Changes
Title
unchanged
Customize CGridView columns directly in your view
Category
unchanged
Tips
Yii version
unchanged
Tags
unchanged
cgridview, columns
Content
changed
[...]
Very often, you will want to customize a single column, while keeping the rest untouched. There are many ways to accomplish this, but I find the following to be the easiest one:
```php
$columns = array_keys($model->metaData->columns);
$columns[array_search('column_name'
, $columns)] = array(
'name' => 'column_name',
'value' => ...
);
$this->widget('zii.widgets.grid.CGridView', array(
'dataProvider' => $model->search() ,[...]