Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Yii2 dosamigos Ckeditor Language Direction

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

like image 829
Biju s Avatar asked Dec 06 '16 10:12

Biju s


1 Answers

use this

<?= $form->field($model, 'cmsdetails_ar')->widget(CKEditor::className(), [
        'options' => ['rows' => 6],
        'preset' => 'basic',  'clientOptions' => ['contentsLangDirection'=>'rtl']
    ]) ?>
like image 80
bijus Avatar answered Nov 28 '22 11:11

bijus