Yii2 Scroll Pager (Y2SP) turns your regular paginated page into an infinite scrolling page using AJAX.
Y2SP works with a Pagination
object which specifies the totally number of pages and the current page number.
Pager is build with help of JQuery Infinite Ajax Scroll plugin.
- Yii 2.0
- PHP 5.4
The preferred way to install this extension is through Composer.
Either run
php composer.phar require kop/yii2-scroll-pager "dev-master"
or add
"kop/yii2-scroll-pager": "dev-master"
to the require
section of your composer.json
file.
Just pass the ScrollPager class name to the ListView pager
configuration.
Make sure that items in your list have some classes that can be used as JavaScript selectors.
echo ListView::widget([
'dataProvider' => $dataProvider,
'itemOptions' => ['class' => 'item'],
'itemView' => '_item_view',
'pager' => ['class' => \kop\y2sp\ScrollPager::className()]
]);
Default: ".list-view"
Enter the selector of the element containing your items that you want to paginate.
Default: ".item"
Enter the selector of the element that each item has. Make sure the elements are inside the container element.
Default: 600
Minimal number of milliseconds to stay in a loading state.
Default: 10
On default IAS starts loading new items when you scroll to the latest .item element. The negativeMargin will be added to the items' offset, giving you the ability to load new items earlier (please note that the margin is always transformed to a negative integer).
For example:
Setting a negativeMargin of 250 means that IAS will start loading 250 pixel before the last item has scrolled into view.
Default:
Array( ScrollPager::EXTENSION_TRIGGER, ScrollPager::EXTENSION_SPINNER, ScrollPager::EXTENSION_NONE_LEFT, ScrollPager::EXTENSION_PAGING, ScrollPager::EXTENSION_HISTORY )
The list of the enabled plugin extensions.
Default: "Load more items"
Text of trigger the link.
Default: "<div class="ias-trigger" style="text-align: center; cursor: pointer;"><a>{text}</a></div>
"
Allows you to override the trigger html template.
Default: 0
The number of pages which should load automatically. After that the trigger is shown for every subsequent page.
For example: if you set the offset to 2, the pages 2 and 3 (page 1 is always shown) would load automatically and for every subsequent page the user has to press the trigger to load it.
The src attribute of the spinner image.
Default: "<div class="ias-spinner" style="text-align: center;"><img src="{src}"/></div>
"
Allows you to override the spinner html template.
Default: "You reached the end"
Text of the "nothing left" message.
Default: "<div class="ias-noneleft" style="text-align: center;">{text}</div>
"
Allows you to override the "nothing left" message html template.
Default: ".previous"
Enter the selector of the link element that links to the previous page.
The href attribute of this element will be used to get the items from the previous page.
Make sure there is only one element that matches the selector.
Default: null
A selector for div
HTML element to use as an overflow container.
Default: null
Triggered when the visitors scrolls.
Default: null
Triggered when a new url will be loaded from the server.
Default: null
Triggered after a new page was loaded from the server.
Default: null
Triggered before new items will be rendered.
Default: null
Triggered after new items have rendered.
Default: null
Triggered when there are no more pages left.
Default: null
Triggered when the next page should be loaded.
Happens before loading of the next page starts. With this event it is possible to cancel the loading of the next page.
You can do this by returning false from your callback.
Default: null
Triggered when IAS and all the extensions have been initialized.
Default: null
Triggered when a used scroll to another page.
- Report any issues on the GitHub.
yii2-scroll-pager is released under the MIT License. See the bundled LICENSE.md
for details.