The example of this article describes the method of defining the address of the operation button in the Yii view CGridView. Share it with everyone for your reference, the details are as follows:
widget('zii.widgets.grid.CGridView', array( 'id'=>'mem-sub-grid', 'dataProvider'=>$model, 'columns'=>array( 'zpc_catname', array('name'=>'inputtime', 'value'=>'date("y-m-d H:m",$data->inputtime)', 'htmlOptions'=>array('class'=>'t_c'), ), array( 'class'=>'CButtonColumn', //注意URL规则 'updateButtonUrl'=>'Yii::app()->controller->createUrl("updaterole",array("id"=>$data->primaryKey))', 'deleteConfirmation'=>'确认删除',//删除操作弹框提示的信息 'buttons'=>array( 'view'=>array('visible'=>'false'), //注意URL规则, 'dalete'=>array('url'=>'Yii::app()->controller->createUrl("deleterole",array("id"=>$data->primaryKey))') ), ), ), )); ?>
I hope this article will be helpful to everyone’s PHP program design based on the Yii framework.
For more Yii view CGridView implementation operation button definition address examples and related articles, please pay attention to the PHP Chinese website!