hi, I’m using a CListView to display data from the database via a DataProvider.
Potentially there will be a fair amount of data but a limited amount of space. Instead of Pagination, is it possible to have a vertical scroll bar which preferably doesn’t affect the table header.
I know a work around way to do this in php/html, but never had to use Yii Frameworks before.
Thanks
$this->widget('zii.widgets.CListView', array(
'dataProvider'=>$dataProvider2,
'id'=>'ticketview',
'itemView'=>'_ticketview',
'template' => "{sorter}\n{items}\n{pager}",
'viewData'=>array('uid'=>$uid)
));