2amigos / yii2-ckeditor-widget

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

Resize the CKEditor #127

Open AlessandroCuba opened 6 years ago

AlessandroCuba commented 6 years ago

Hello

i cann´t the widget resize, i have tried

$form->field($model, 'news')->widget(CKEditor::className(),[
   'options' => [
        'row' => 6,
        'width' => '100%',
   ],
   'preset' => 'basic'    
])->label(false);

but not result!! thank,

ghost commented 5 years ago
$form->field($model, 'news', [
   'options' => [
        'style' => 'width: 100%;'
   ],
])->widget(CKEditor::className(),[
   'options' => [
        'row' => 6,
   ],
   'preset' => 'basic'    
])->label(false);