Difference between #2 and #3 of
Customize CGridView columns directly in your view

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() ,
[...]
2 1
5 followers
Viewed: 39 220 times
Version: 1.1
Category: Tips
Written by: clapas
Last updated by: clapas
Created on: Aug 14, 2012
Last updated: 11 years ago
Update Article

Revisions

View all history