@H_502_0@本文实例讲述了Yii中CGridView禁止列排序的设置方法。分享给大家供大家参考,具体如下:
@H_502_0@Yii中CGridView的功能是用来显示的数据列表。它支持排序,分页,和AJAX数据请求。
@H_502_0@下面的代码演示了CGridView禁止列排序的设置方法:
<div class="jb51code">
<pre class="brush:php;">
'columns' => array (
array (
'class' => 'CCheckBoxColumn','selectableRows' => '2','value' => '$data->id','id' => 'delete'
),array(
'header' => '标题','name'=>'title','sortable'=>false,//在这里设置
),array (
'class' => 'CButtonColumn'
)
),