Skip to content

Instantly share code, notes, and snippets.

@jamband
Last active September 28, 2015 10:38
Show Gist options
  • Save jamband/1426028 to your computer and use it in GitHub Desktop.
Save jamband/1426028 to your computer and use it in GitHub Desktop.
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id' => 'hoge-grid',
'dataProvider' => $model->search(),
'filter' => $model,
'columns' => array(
'id',
array(
'name' => 'username',
'value' => '$data->user->username',
),
'fuga',
'piyo',
array(
'class' => 'CButtonColumn',
),
),
)); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment