How can I hide this pagination text from clistview detail page?
Asked
Active
Viewed 222 times
0
-
2See http://stackoverflow.com/questions/14978000/hidden-pagination-summary-text. – secretlm Sep 14 '13 at 17:03
1 Answers
1
<?php
$this->widget('zii.widgets.CListView', array(
'dataProvider'=>$dataProvider,
'summaryText'=>'',
'itemView'=>'_view',
));
?>
you can set this:
'summaryText'=>'',

Muhammad Shahzad
- 9,340
- 21
- 86
- 130