没有模型的yii2 ckeditor小部件

时间:2017-08-10 08:14:31

标签: input yii2 ckeditor

我正在使用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']); ?>

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

如果我正确理解你的问题。

根据2amigos

,这是在没有模型的情况下使用它的方法
 use dosamigos\ckeditor\CKEditorInline;

<?php CKEditorInline::begin(['preset' => 'basic']);?>
    This text can be edited now :)
<?php CKEditorInline::end();?>

编辑:

如果您想更改名称/ ID,堆栈溢出中有2个答案可能对您有帮助herehere