nterms / yii2-pagesize-widget

Widget for enabling dynamic page size selection on yii2 GridView
MIT License
38 stars 18 forks source link

Multiple select boxes #1

Closed arogachev closed 9 years ago

arogachev commented 10 years ago

I want to create one select box above GridView and another one below. Any ideas how to implement this?

nterms commented 9 years ago

You may do this.

<?= \app\widgets\PageSize::widget(); ?>

<?= GridView::widget([
...
]); ?>

<?= \app\widgets\PageSize::widget(); ?>

Just add two instances of the widget.

arogachev commented 9 years ago

This doesn't solve the problem. Only one drop-down list is working (the one located below). I tried to change filterSelector to base on element class and not attribute name, this didn't help too.