Reputation: 430
In Yii2 Ckeditor , I am using
use dosamigos\ckeditor\CKEditor;
this extension for showing ckeditor in form
<?= $form->field($model, 'cmsdetails_ar')->widget(CKEditor::className(), [
'options' => ['rows' => 6],
'preset' => 'basic', 'contentsLangDirection'=>'rtl'
]) ?>
I have add a additional option 'contentsLangDirection'=>'rtl' to show arabic text .
But contentsLangDirection is not working this extension ,
Please help me . Thanks
Upvotes: 5
Views: 551
Reputation: 161
use this
<?= $form->field($model, 'cmsdetails_ar')->widget(CKEditor::className(), [
'options' => ['rows' => 6],
'preset' => 'basic', 'clientOptions' => ['contentsLangDirection'=>'rtl']
]) ?>
Upvotes: 7