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
use this
<?= $form->field($model, 'cmsdetails_ar')->widget(CKEditor::className(), [
        'options' => ['rows' => 6],
        'preset' => 'basic',  'clientOptions' => ['contentsLangDirection'=>'rtl']
    ]) ?>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With