小编axo*_*xon的帖子

如何在yiibooster gridview中编辑标题?

我开始使用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

yii cgridview yii-booster

12
推荐指数
1
解决办法
1489
查看次数

标签 统计

cgridview ×1

yii ×1

yii-booster ×1