Yii 新手,我想知道是否有渲染我之前在 CKEditor TextArea 中制作的视图。
我尝试在 value 属性中渲染它,但不幸的是它不起作用。
有没有办法做到这一点?还是应该创建一个单独的函数并将页面输出到文本区域?
非常感谢任何提示、建议或指示!谢谢你
<?php
$this->widget('application.extension.CKEditor.TheCKEditorWidget', array(
'model' => $model,
'attribute' => 'body',
'value' => //rendered page,
'height' => '400px',
'width' => '800px',
'toolbarSet' => 'Full',
'ckeditor' => Yii::app()->basePath . '/../ckeditor/ckeditor.php',
'ckBasePath' => Yii::app()->baseUrl . '/ckeditor/',
'css' => Yii::app()->baseUrl . '/css/index.css',
)); ?>