2amigos / yii2-ckeditor-widget

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

Can I Set Ckediter Readonly or Disabled ? #120

Closed jamespakorn closed 6 years ago

jamespakorn commented 6 years ago

<?php
echo $form->field($model, 'note')->widget(\dosamigos\ckeditor\CKEditor::className(), [
    'clientOptions' => ['height' => 100],
    'preset' => 'advance',
])
?>
NabiKAZ commented 6 years ago

Yes, use readOnly option.
Try this code:

echo $form->field($model, 'note')->widget(\dosamigos\ckeditor\CKEditor::className(), [
    'clientOptions' => [
        'height' => 100,
        'readOnly' => true,
    ],
    'preset' => 'advance',
]);
jamespakorn commented 6 years ago

thank you