Initializes the widget.
Initializes the widget. You have to call this in boot for the widget to work.
Transforms a regular table into a tablesorter
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)
A list of tuples of int * sorter options. the int is the column number. The column number is indexed starting from 0
A list of tuples of int * Sorting. the int is the column number. Use DisableSorting to disable sorting
A JsObj with valid properties to configure the jQuery TableSorter plugin
Transforms a regular table into a tablesorter when page is loaded
Transforms a regular table into a tablesorter when page is loaded
A CSS selector for the table you want to transform
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.