0

How can I hide this pagination text from clistview detail page?

enter image description here

halfer
  • 19,824
  • 17
  • 99
  • 186
Muhammad Shahzad
  • 9,340
  • 21
  • 86
  • 130

1 Answers1

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