使用TbEditableColumn YiiBooster更新数据库

时间:2015-04-18 09:52:58

标签: php yii cgridview yii-booster

我与Yii和YiiBooster合作,我使用TbEditableColumn编辑我的GridView

是否可以使用此可编辑列更改表格中的数据?

这是我的代码:

$this->widget('booster.widgets.TbGridView', array(
'id' => 'post-grid',
'type' => 'striped bordered',
'dataProvider' => $model->search(),
'filter' => $model,
'columns' => array(
    array('name' => 'author_name', 'value' => '$data->author ? $data->author->username: "-"'),
    array('name' => 'kegiatan', 'value' => 'str_replace(array("\r\n", "\r", "\n"), "\n", $data->kegiatan)'),
    'pic',
    'keterangan',
    'create_time',
    array(
            'class' => 'booster.widgets.TbEditableColumn',
            'name' => 'feedback',
            'sortable' => false,
            'editable' => array(
                'url' => $this->createUrl('updateFeedback'),
                'placement' => 'right',
                'inputclass' => 'span3'
            )
        ),
    array(
        'header' =>'Action',
        'class' => 'CButtonColumn',
    ),
),
));

我必须在MyController / updateFeedback中做什么?

0 个答案:

没有答案