Pagination
The Pagination Class provides properties, methods, and events to interface with the HTML tags generated by the <silk:Pagination>
tag.
Kind: global class
Properties
$pagination
Object
jQuery object referencing the pagination HTML tag.
currentPage
Integer
The index of selected page
totalRows
Integer
The total rows return by the query.
totalPages
Integer
The total generated pages.
$pageStartRow
Integer
The page starting the pages list view.
$pageSize
Integer
The number of items per page.
$showPages
Integer
Number of pages to be displayed
$leftArrow
Object
jQuery object referencing the pagination's left arrow.
$rightArrow
Object
jQuery object referencing the pagination's right arrow.
Methods and Event
new Pagination(id, size, pages, label)
Returns a Pagination instance.
id
String
Unique identifier.
size
Integer
500
The number of garget items per page.
pages
Integer
10
The number of pages listed in the pagination bar.
label
String
Records
Optional pagination label.
clean()
Method to clean the pagination container.
Kind: instance method of Pagination
on
Extends the "on" method from the eventManager Class.
Kind: instance property of Pagination
eventName
String
The event's name.
eventFunction
function
The function to be triggered.
on:click
Event triggered when a page button is clicked. Created with the Pagination.on("click", function(){})
method.
Kind: event emitted by Pagination
Last updated