【发布时间】:2017-01-31 00:19:48
【问题描述】:
我在 Yii2 中实现了由 marqu3s\summernote\Summernote 扭曲的 Summernote; https://github.com/undeman/yii2-summernote
但我无法添加 Summernote 文档中显示的工具栏选项: http://summernote.org/deep-dive/
这就是我尝试使用它的方式,但是当我添加工具栏选项时,工具栏就会消失。
$tabReport .= $form->field($model, 'ysk')->widget(Summernote::className(), [
'clientOptions' => [
'placeholder' => 'You can write here some important public notes to be display on top of the report...',
'minHeight' => 100,
'toolbar' => [
'style' => ['bold', 'italic', 'underline', 'clear'],
],
],
]
);
有什么线索吗?
【问题讨论】:
标签: php yii2 yii2-advanced-app summernote