net.liftmodules.widgets.tablesorter

TableSorter

object TableSorter extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. TableSorter
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  6. def apply (selector: String, options: JsObj): NodeSeq

  7. def apply (selector: String): NodeSeq

  8. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  9. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  10. def eq (arg0: AnyRef): Boolean

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

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

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef → Any
  14. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  15. def init (): Unit

    Initializes the widget.

    Initializes the widget. You have to call this in boot for the widget to work.

  16. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  17. def jsRender (selector: String): JsExp

  18. def jsRender (selector: String, options: JsObj): JsExp

    Transforms a regular table into a tablesorter

  19. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  20. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  21. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  22. def options (headers: List[(Int, net.liftmodules.widgets.tablesorter.TableSorterOption[_])], sortList: List[(Int, Sorting)]): JsObj

  23. def options (): JsObj

  24. def options (headers: List[(Int, net.liftmodules.widgets.tablesorter.TableSorterOption[_])], widgets: List[String], sortList: List[(Int, Sorting)]): JsObj

    Use this method to create a type-safe configuration JsObj for the TableSorter.

    Use this method to create a type-safe configuration JsObj for the TableSorter. See http://tablesorter.com/docs/ for more information about the possible configurations of the jQuery plugin.

    Example usage: TableSorter.options( headers = (0, DisableSorting()) :: (3,Sorter("currency")) :: Nil, sortList = (3,Sorting.DSC) :: Nil)

    headers

    A list of tuples of int * sorter options. the int is the column number. The column number is indexed starting from 0

    sortList

    A list of tuples of int * Sorting. the int is the column number. Use DisableSorting to disable sorting

    returns

    A JsObj with valid properties to configure the jQuery TableSorter plugin

  25. def renderOnLoad (selector: String, options: JsObj): NodeSeq

    Transforms a regular table into a tablesorter when page is loaded

    Transforms a regular table into a tablesorter when page is loaded

    selector

    A CSS selector for the table you want to transform

    options

    A JsObject configuring the tablesorter. You can use the connivance method TableSorter.options to create the JsObj in a type-safe manner. Check out http://tablesorter.com/docs/ for more info about the possible configurations.

  26. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  27. def toString (): String

    Definition Classes
    AnyRef → Any
  28. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any