You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when you combine tabular form and widget tinymce like this <attribute> => [ 'type' => TabularForm::INPUT_WIDGET, 'widgetClass'=>\dosamigos\tinymce\TinyMce::classname(), ],
the old tinymce will not appear when you click add, so I suggest to add this code to reinit the tinymce $js[] = "tinymce.EditorManager.execCommand('mceRemoveEditor',true, '$id');";
in dosamigos\tinymce\TinyMce
right above the $js[] = "tinymce.init($options);";
when you combine tabular form and widget tinymce like this
<attribute> => [ 'type' => TabularForm::INPUT_WIDGET, 'widgetClass'=>\dosamigos\tinymce\TinyMce::classname(), ],the old tinymce will not appear when you click add, so I suggest to add this code to reinit the tinymce
$js[] = "tinymce.EditorManager.execCommand('mceRemoveEditor',true, '$id');";in dosamigos\tinymce\TinyMce
right above the
$js[] = "tinymce.init($options);";thank you