lists/src/pagination.ts
This service should be provided by a component that is at the root of a pagination container structure. You may then inject it into the same component to have access to the relevant data for the pagination component.
Properties |
Methods |
Accessors |
constructor(querying: BlueriqQuerying, session: BlueriqSession)
|
|||||||||
Parameters :
|
clear |
clear:
|
Type : Button | undefined
|
Decorators :
@BlueriqChild(Button, '#clear', {optional: undefined})
|
currentPageNumber |
currentPageNumber:
|
Type : number
|
first |
first:
|
Type : Button
|
Decorators :
@BlueriqChild(Button, '#first')
|
last |
last:
|
Type : Button
|
Decorators :
@BlueriqChild(Button, '#last')
|
next |
next:
|
Type : Button
|
Decorators :
@BlueriqChild(Button, '#next')
|
numberOfPages |
numberOfPages:
|
Type : number
|
previous |
previous:
|
Type : Button
|
Decorators :
@BlueriqChild(Button, '#previous, #prev')
|
navigateTo | ||||||
navigateTo(page: number)
|
||||||
Navigates to the specified page.
Parameters :
Returns :
boolean
|
changes$ |
getchanges$()
|
Accesses of stream that emits whenever the pagination state changes.
Returns :
Observable<void>
|