Class

net.liftweb.mapper.view

SortedMapperPaginator

Related Doc: package view

Permalink

class SortedMapperPaginator[T <: Mapper[T]] extends MapperPaginator[T] with SortedPaginator[T, MappedField[_, T]]

Implements MapperPaginator and SortedPaginator.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SortedMapperPaginator
  2. SortedPaginator
  3. MapperPaginator
  4. Paginator
  5. Loggable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SortedMapperPaginator(meta: MetaMapper[T], initialSort: MappedField[_, T], _headers: (String, MappedField[_, T])*)

    Permalink

    meta

    The singleton of the Mapper class you're paginating

    initialSort

    The field to sort by initially

    _headers

    Pairs of column labels and MappedFields.

Type Members

  1. type SortState = (Int, Boolean)

    Permalink

    Pair of (column index, ascending)

    Pair of (column index, ascending)

    Definition Classes
    SortedPaginator

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. var _sort: (Int, Boolean)

    Permalink
    Attributes
    protected
    Definition Classes
    SortedPaginator
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. var constantParams: Seq[QueryParam[T]]

    Permalink

    QueryParams to use always

    QueryParams to use always

    Definition Classes
    MapperPaginator
  8. def count: Long

    Permalink

    The total number of items

    The total number of items

    Definition Classes
    MapperPaginatorPaginator
  9. def curPage: Int

    Permalink

    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
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def first: Long

    Permalink

    The record number this page starts at.

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

    Definition Classes
    Paginator
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. val headers: List[(String, MappedField[_, T])]

    Permalink

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

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

    Definition Classes
    SortedMapperPaginatorSortedPaginator
  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. def itemsPerPage: Int

    Permalink

    How many items to put on each page

    How many items to put on each page

    Definition Classes
    Paginator
  19. val logger: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    Loggable
  20. val meta: MetaMapper[T]

    Permalink

    The singleton of the Mapper class you're paginating

    The singleton of the Mapper class you're paginating

    Definition Classes
    MapperPaginator
  21. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. def numPages: Int

    Permalink

    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
  25. def page: List[T]

    Permalink

    The items displayed on the current page

    The items displayed on the current page

    Definition Classes
    SortedMapperPaginatorMapperPaginatorPaginator
  26. def sort: SortState

    Permalink

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

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

    Definition Classes
    SortedPaginator
  27. def sort_=(s: SortState): Unit

    Permalink

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

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

    Definition Classes
    SortedPaginator
  28. def sortedBy(column: Int): SortState

    Permalink

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

    Definition Classes
    SortedPaginator
  29. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  30. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  31. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. def zoomedPages: List[Int]

    Permalink

    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 SortedPaginator[T, MappedField[_, T]]

Inherited from MapperPaginator[T]

Inherited from Paginator[T]

Inherited from Loggable

Inherited from AnyRef

Inherited from Any

Ungrouped