编辑器
PHP Code复制内容到剪贴板
- <?php echo $form->field($module, 'newstext', [
- 'template' => '{label}<div class="col-sm-8">{input}</div><div class="col-sm-2">{error}</div>',
- 'labelOptions' => ['class' => 'col-sm-2 control-label'],
- ])->widget(\common\widgets\EditorWidget::className(), [
- 'type' => 'redactor',
- 'inputOptions' => [
- 'minHeight' => '300px'
- ]
- ]); ?>
PHP Code复制内容到剪贴板
- <?php
- echo \common\widgets\EditorWidget::widget([
- 'name' => Html::getInputName($module, 'newstext'),
- 'value' => $module->newstext,
- 'type' => 'redactor',
- 'inputOptions' => [
- 'placeholder' => '输入整改内容',
- 'minHeight' => '200px'
- ]
- ]);
- ?>
上一篇 用户行为记录