|
整理文档,搜刮出一个Yii实现复选框批量操作实例代码,稍微整理精简一下做下分享。
在视图下
widget('zii.widgets.grid.CGridView', array(
'id'=>'user-grid',
'dataProvider'=>$model->search(),//Model里需要有个search()方法,$model是Controller中传递的Model对象
// /'filter'=>$model,
'columns'=>array(
array(
'selectableRows' => 2,
'class' => 'CCheckBoxColumn',
'headerHtmlOptions' => array('width'=>'18px','align'=>'center'),
'checkBoxHtmlOptions' => array('name' => 'ids[]','align'=>'center'),
),
'homework_numberID',
'type',
'target',
'state',
'author_id',
array('name'=>'state','type'=>'raw','value'=>'($data->state =="not_read" ?"未读":"已审核")'),
// array('name'=>'passRecord','type'=>'date'),
array('name'=>'submit_time','type'=>'date'),
array(
'class'=>'CButtonColumn',
),
),
)); ?>
通过
不通过
设置状态
在Model中的search()函数
public function search()
{
// @todo Please modify the following code to remove attributes that should not be searched.
$criteria=new CDbCriteria;
//$criteria->with = array('author'); //添加了和 author 的渴求式加载
// $this->state = "not_passed";
$criteria->compare('state',$this->state);
//这里添加了一个 compare, username 是 User 表的字段,$this->name 是我们添加的属性,true 为模糊搜索
//$criteria->compare('username',$this->name,true);
return new CActiveDataProvider($this, array(
'criteria'=>$criteria,
));
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:解析yii数据库的增删查改Yii操作数据库的3种方法Yii实现MySQL多数据库和读写分离实例分析Yii2.0高级框架数据库增删改查的一些操作Yii中CGridView实现批量删除的方法Yii实现单用户博客系统文章详情页插入评论表单的方法浅析Yii2 gridview实现批量删除教程Yii2如何批量添加数据JavaScript中全选、全不选、反选、无刷新删除、批量删除、即点即改入库(在yii框架中操作)的代码分享yii2使用GridView实现数据全选及批量删除按钮示例Yii2 批量插入、更新数据实例YII框架批量插入数据的方法
|
|