我开始使用yiibooster在gridview简单添加上进行就地编辑
$columns[] = array(
'name' => $field->name,
'value' => array($this, 'cellValue'),
'class' => 'bootstrap.widgets.TbJEditableColumn',
'jEditableOptions' => array(
'type' => 'text',
// very important to get the attribute to update on the server!
'submitdata' => array('field_id'=>$field->id),
'width' => '100%',
'placeholder' => Yii::t('sms', 'click for edit'),
)
);
Run Code Online (Sandbox Code Playgroud)
如何以相同的方式编辑表头?
编辑: 我的解决方案.这个对我有用. http://pastebin.com/0NzHMgEr