trait SortedPaginator[T, C] extends Paginator[T]
In many situations you'll want to sort things in your paginated view.
SortedPaginator is a specialized paginator for doing such tasks.
T: The type of the elements, accessed via def page within the listing snippet C: The type of the columns, used to specify sorting
- Alphabetic
- By Inheritance
- SortedPaginator
- Paginator
- Loggable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def count: Long
The total number of items
The total number of items
- Definition Classes
- Paginator
- abstract def headers: List[(String, C)]
The sort headers: pairs of column labels, and column identifier objects of type C.
- abstract def page: Seq[T]
The items displayed on the current page
The items displayed on the current page
- Definition Classes
- Paginator
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val _sort: SortState
- Attributes
- protected
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def curPage: Int
Calculates the current page number, based on the value of 'first.'
Calculates the current page number, based on the value of 'first.'
- Definition Classes
- Paginator
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def first: Long
The record number this page starts at.
The record number this page starts at. Zero-based.
- Definition Classes
- Paginator
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def itemsPerPage: Int
How many items to put on each page
How many items to put on each page
- Definition Classes
- Paginator
- val logger: Logger
- Attributes
- protected
- Definition Classes
- Loggable
- Annotations
- @transient()
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def numPages: Int
Calculates the number of pages the items will be spread across
Calculates the number of pages the items will be spread across
- Definition Classes
- Paginator
- def sort: SortState
Get the current sort state: Pair of (column index, ascending?)
- def sort_=(s: SortState): Unit
Set the current sort state: Pair of (column index, ascending?)
- def sortedBy(column: Int): SortState
Returns a new SortState based on a column index.
Returns a new SortState based on a column index. If the paginator is already sorted by that column, it toggles the direction; otherwise the direction is ascending. Note that this method does not alter the sort state in the paginator; it only calculates the direction toggle. Example usage: sortedPaginator.sort = sortedPaginator.sortedBy(columns.indexOf(clickedColumn))
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def zoomedPages: List[Int]
Returns a list of page numbers to be displayed in 'zoomed' mode, i.e., as the page numbers get further from the current page, they are more sparse.
Returns a list of page numbers to be displayed in 'zoomed' mode, i.e., as the page numbers get further from the current page, they are more sparse.
- Definition Classes
- Paginator