Bonjour,
Je cherche la liste des paramètres pour le widget CgridView.
Par exemple dans le code suivant je voudrais savoir quels paramètres sont possibles pour une colonne; exemple :‘header’, ‘name’, ‘htmlOptions’
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'parcours-grid',
'dataProvider'=>$model->chercherParcours(),
'filter'=>$model,
'columns'=>array(
'inactif:boolean',
array(
'header' => 'Parcours',
'name' => 'code_parcours',
'htmlOptions' => array('width' => 20),
),
array(
'header' => 'Inactif ?',
'name' => 'inactif',
'htmlOptions' => array('width' => 10),
),
array(
'class' => 'CButtonColumn',
'template' => '{update}{delete}',
'htmlOptions' => array('width' => 30),
'buttons' => array(
'update' => array('url' => '$this->grid->controller->createUrl("update",array("id"=>$data["code_parcours"]))'),
'delete' => array('url' => '$this->grid->controller->createUrl("desactiver",array("id"=>$data["code_parcours"]))'),
),
),
),
)); ?>