我想为 yii 中的模型插入 EditableGridView。我已按照此处的插件说明进行操作, 我刚刚将 php 类源文件上传到“/protected/extentions”文件夹并插入到视图中:
$this->widget('zii.widgets.grid.CEditableGridView', array(
'dataProvider'=>$dataProvider,
'showQuickBar'=>'true',
'quickCreateAction'=>'QuickCreate', // will be actionQuickCreate()
'columns'=>array(
'title', // display the 'title' attribute
array('header' => 'editMe', 'name' => 'editable_row', 'class' => 'CEditableColumn')
));
当我运行它时,'别名“zii.widgets.grid.CEditableGridView”无效'CException 开启。怎么了?我是否需要像使用 x-editable 'EditableDetailView' 那样在 /congig/main.php 中添加更多内容以将其插入?