Skip to content

Instantly share code, notes, and snippets.

@muya
Last active December 17, 2015 18:48
Show Gist options
  • Save muya/5655356 to your computer and use it in GitHub Desktop.
Save muya/5655356 to your computer and use it in GitHub Desktop.
Example of a Yii CGridView Widget used in the StudentPortal Project
/**
* CGridView widget
*/
$this->widget('zii.widgets.grid.CGridView', array(
'id'=>'users-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
'userID',
'firstName',
'lastName',
'userName',
'email',
/*
'status',
'dateCreated',
'insertedBy',
'dateModified',
'updatedBy',
*/
array(
'class'=>'CButtonColumn',
),
),
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment