Biju s
Biju s

Reputation: 430

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

Upvotes: 5

Views: 551

Answers (1)

bijus
bijus

Reputation: 161

use this

<?= $form->field($model, 'cmsdetails_ar')->widget(CKEditor::className(), [
        'options' => ['rows' => 6],
        'preset' => 'basic',  'clientOptions' => ['contentsLangDirection'=>'rtl']
    ]) ?>

Upvotes: 7

Related Questions