Arkadaşlar CGridView ile verilerimiz tabloda göstermeye çalışıyorum ama bir hata alıyorum. Kodlarım;
<?php
$this->widget(‘zii.widgets.grid.CGridView’, array(
'id' => 'user-grid',
'itemsCssClass' => 'table table-bordered datatable',
'pagerCssClass' => 'dataTables_paginate paging_simple_numbers',
'pager' => array(
'htmlOptions' => array(
'class' => 'pagination pagination-sm'
),
'header' => '',
'firstPageLabel' => '<i class=""entypo-left-thin"></i>İlk',
'firstPageLabel' => '<i class=""entypo-left-open"></i>',
'firstPageLabel' => '<i class=""entypo-right-open"></i>',
'firstPageLabel' => 'Son<i class=""entypo-right-thin"></i>',
),
'summaryText'=>'',
'rowCssClass' =>array('odd gradeX', 'even gradeC'),
'dataProvider' => $model->search(),
'filter' => $model,
'columns' => array(
'ID',
'Adı',
'Etiketleri',
'Durumu',
'Sırası',
array(// display a column with "view", "update" and "delete" buttons
'class' => 'CButtonColumn',
'template' => '{update} {delete}',
'buttons' => array(
'update' => array(
'label' => '<i class="entypo-pencil"></i>Edit',
'imageUrl' => false,
'options' => array('class' => 'btn btn-default btn-sm btn-icon icon-left'),
'visible' => true,
),
'delete' => array(
'label' => '<i class="entypo-cancel"></i>Delete',
'imageUrl' => false,
'options' => array('class' => 'btn btn-danger btn-sm btn-icon icon-left'),
'visible' => true,
),
),
),
),
));
?>
Sütun, “Type” ve “Label” 'ın opsiyonel olduğu durumda, “Name:Type:Label” formatında tanımlanmalıdır böyle bir hata alıyorum yardımcı olabilecek var mı?