i installed ckeditor from https://github.com/2amigos/yii2-ckeditor-widget on my Yii 2 advanced platform.
Installation is successful. However when i click submit, it is not passing through the validation check and will state "Description cannot be blank" even though there is content inside. When i click submit button for the second time, the data got through.
Inside rules in model this field is required. When i remove ckeditor and directly use
<?php echo $form->field($model, 'MY_DESC'); ?>
it got through on first submit.
Can anyone kindly help?
Thanks in advance.