Files
yii/framework/web/widgets/pagers
Roman Levishchenko ecae40c0ef Allow to hide First, Previous, Next and Last buttons.
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
2014-08-15 01:52:31 +02:00
..
2013-01-15 18:38:02 +07:00
2013-01-15 18:38:02 +07:00
2013-01-15 18:38:02 +07:00