Skip to content
t-visualappeal edited this page Aug 23, 2012 · 2 revisions

CGridView demo

<?php 
$this->widget('EBootstrapGridView', array(
	'id'=>'crud-grid',
	'dataProvider'=>$model->search(),
	'filter'=>$model,
	'columns'=>array(
		'id',
		'title',
		'date_created',
		'date_updated',
		array(
			'class'=>'EBootstrapButtonColumn',
		),
	),
	'pager' => array(
		'class' => 'EBootstrapLinkPager',
		'header' => false,
	),
	'pagerAlign' => 'centered',
	'bordered' => true,
	'striped' => true,
	'condensed' => true,
)); 
?>
Clone this wiki locally