mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-24 00:46:52 +01:00
Hi, now there is no way to disable text buttons in CLinkPager (without development own pager).
My propose:
```php
$this->widget(
'zii.widgets.CListView',
array(
'dataProvider' => $dataProvider,
...
'pager' => array(
'firstPageLabel' => false,
'lastPageLabel' => false,
'header' => '',
'footer' => '',
'cssFile' => false
)
...
```
In this case First and Last links will be disabled.
Cheers.
close #2630