2amigos / yii2-ckeditor-widget

CKEditor WYSIWYG widget for Yii2.
https://2amigos.us/open-source/ckeditor-widget
Other
172 stars 112 forks source link

Item 'Underline' is not showing #94

Closed jaehter closed 7 years ago

jaehter commented 7 years ago

I choosed custom configuration without toolbarGroups and I didn´t get the item 'Underline' in the toolbar.

<?= $form->field($model, 'text')->widget(CKEditor::className(), [ 'preset' => 'custom', 'clientOptions' => [ 'height' => 400, 'toolbar' => [ ['name' => 'undo', 'items' => ['Undo', 'Redo']], ['name' => 'basicstyles', 'items' => ['Bold', 'Italic', 'Underline']], ['name' => 'list', 'items' => ['NumberedList', 'BulletedList']], ] ] ]) ?>

Anyone knows what´s wrong?

tonydspaniard commented 7 years ago

maybe you should do this?

 ['name' => 'basicstyles', 'groups' => ['basicstyles'],

Edit: mmm... I have seen also some issues on their forum: http://ckeditor.com/forums/CKEditor/CKEditor4-Underline-button-not-appearing-in-toolbar

tonydspaniard commented 7 years ago

@jaehter please check this: http://ckeditor.com/comment/122939#comment-122939