0
我使用yii2 dosamigos ckeditor擴展。yii2沒有模型的ckeditor部件
echo $form->field($modelPatientTest, 'template_data')->widget(\dosamigos\ckeditor\CKEditor::className(), [
'options' => ['rows' => 3,'value' => $templateData],
'preset' => 'full',
'name' => 'modalckeditor',
'clientOptions' => ['height' => 200,'width'=>750]
]);
我想使用它沒有模型,以便我可以設置自定義名稱。像以下
<?php echo Html::textInput("TestValue[{$test->test_group_id}][{$test->id}]", $test_value, ['class' => 'form-control inputvalue']); ?>
任何人都可以幫忙嗎?
有CKEDITOR和CKEditorInline之間的區別......我是說只是CKEDITOR不在線......不過我解決了自己被下面的代碼... echo CKEditor :: widget([ 'name'=>「TestValue [{$ testGroup-> id}]」, 'id'=>'patienttest-template_data', 'preset'=>'full', 'value'=> $ templateData, 'clientOptions'=> ['height'=> 200,'width'=> 750], ]); –