我正在使用yii2 dosamigos 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']); ?>
有人可以帮忙吗?