Packages

t

net.liftweb.http

SortedPaginator

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

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SortedPaginator
  2. Paginator
  3. Loggable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type SortState = (Int, Boolean)

    Pair of (column index, ascending)

Abstract Value Members

  1. abstract def count: Long

    The total number of items

    The total number of items

    Definition Classes
    Paginator
  2. abstract def headers: List[(String, C)]

    The sort headers: pairs of column labels, and column identifier objects of type C.

  3. 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

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val _sort: (Int, Boolean)
    Attributes
    protected
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. 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
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def first: Long

    The record number this page starts at.

    The record number this page starts at. Zero-based.

    Definition Classes
    Paginator
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def itemsPerPage: Int

    How many items to put on each page

    How many items to put on each page

    Definition Classes
    Paginator
  16. val logger: Logger
    Attributes
    protected
    Definition Classes
    Loggable
    Annotations
    @transient()
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  20. 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
  21. def sort: SortState

    Get the current sort state: Pair of (column index, ascending?)

  22. def sort_=(s: SortState): Unit

    Set the current sort state: Pair of (column index, ascending?)

  23. 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))

  24. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. 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

Inherited from Paginator[T]

Inherited from Loggable

Inherited from AnyRef

Inherited from Any

Ungrouped