Yii-ビュー-CGridViewリストの使い方の詳細.
1772 ワード
CGridViewリストインスタンス
ベースクラスを変更し、下部機能メニューframework/zii/widgets/grid/を定義します.
CGridView.php(152)
<!-- -->
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'words-grid',
'dataProvider'=>$model->search(),//
'filter'=>$model,// ,
'columns'=>array(
array(
'class'=>'CCheckBoxColumn',//
'htmlOptions'=>array('width'=>"30px"),
),
'zw_id',
'zw_title',
array('name'=>'zw_level',
'value'=>'Words::model()->getLevel($data->zw_level)',//
),
'zw_replaceword',
'zw_listorder',
array('name'=>'inputtime',
'value'=>'date("Y-m-d",$data->inputtime)',//
),
array(
'class'=>'CButtonColumn',
'buttons'=>array('view'=>array(
'visible'=>'false'//
)
)
)
)
));
?>
ベースクラスを変更し、下部機能メニューframework/zii/widgets/grid/を定義します.
CGridView.php(152)
public function renderFooterCell()
{
if(trim($this->footer)!==''){
echo CHtml::openTag('td',$this->footerHtmlOptions);
$this->renderFooterCellContent();
echo '</td>';
}
}
ビューを変更し、下部機能ボタンリストを実現 'columns'=>array(
array(
'class'=>'CCheckBoxColumn',
'footer'=>'<button onclink="deleteAll()">button</button>
<button onclink="refashAll()">button</button>',
'footerHtmlOptions'=>array('colspan'=>5),
'selectableRows'=>2,
),