Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 624 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 624 Bytes

#TinyMce widget for yii2 Usage

 <?=
    $form->field($model, 'message')->widget(\Apollo\TinyMceField::className(), ['options' => ['rows' => 6],

        'clientOptions' => [

            'selector' => 'textarea',
            'theme' => "modern",
            'plugins' => ["advlist autolink lists link image charmap print preview hr anchor pagebreak",
                "searchreplace wordcount visualblocks visualchars code fullscreen",
                "insertdatetime media nonbreaking save table contextmenu directionality",
                "emoticons template paste textcolor"],


        ],

    ]);

    ?>