Skip to content
t-visualappeal edited this page Feb 19, 2012 · 2 revisions

CListView demo

CListView

<?php 
$this->widget('EBootstrapListView', array(
	'dataProvider'=>$dataProvider,
	'itemView'=>'_view',
	'pager' => array(
		'class' => 'EBootstrapLinkPager',
		'header' => false,
	),
	'pagerAlign' => 'right',
)); 
?>

itemView (optional)

<?php 
$this->widget('EBootstrapListViewItem', array(
	'data' => $data,
	'attributes'=>array(
		array(
			'name' => 'title',
			'type' => 'html',
			'cssClass' => 'bootstrap-list-view-item-title',
			'value' => EBootstrap::link(EBootstrap::encode($data->title), array('crud/view','id'=>$data->id))
		),
		'date_created',
		'date_updated',
	),
));
?>
Clone this wiki locally