Changes between Version 16 and Version 17 of TableSorterPlugin


Ignore:
Timestamp:
Mar 25, 2017, 3:18:06 PM (7 years ago)
Author:
figaro
Comment:

Moved example to functional description

Legend:

Unmodified
Added
Removed
Modified
  • TableSorterPlugin

    v16 v17  
    11[[PageOutline(2-5,Contents,pullout)]]
    22
    3 = Sort tables
     3= Sort tables by clicking on headings
    44
    55== Description
    66
    7 This plugin allows you to sort tables on your Trac wiki or ticket pages. It uses the [http://tablesorter.com/ tablesorter jQuery plugin] for making wiki tables sortable.
     7This plugin allows you to sort tables on your Trac wiki or ticket pages by clicking on the column headings. It uses the [http://tablesorter.com/ tablesorter jQuery plugin] for making wiki tables sortable.
    88
    99This plugin is a wrapper around the third-party Javascript library `jquery.tablesorter`, that is dual licensed under the MIT and GPL licenses.
     10
     11This is standard [WikiFormatting#Tables table wiki formatting]:
     12
     13{{{
     14||= Last Name =||= First Name =||= Email =||= Due =||
     15|| Smith || John || jsmith@gmail.com || $50.00 ||
     16|| Bach || Frank || fbach@yahoo.com || $50.00 ||
     17|| Doe || Jason || jdoe@hotmail.com || $100.00 ||
     18|| Conway || Tim || tconway@earthlink.net || $50.00 ||
     19}}}
     20
     21Without this plugin it would be shown like this:
     22
     23||= Last Name =||= First Name =||= Email =||= Due =||
     24|| Smith || John || jsmith@gmail.com || $50.00 ||
     25|| Bach || Frank || fbach@yahoo.com || $50.00 ||
     26|| Doe || Jason || jdoe@hotmail.com || $100.00 ||
     27|| Conway || Tim || tconway@earthlink.net || $50.00 ||
     28
     29With this plugin the table is sortable by clicking the headings:
     30
     31[[Image(tableSorterPlugin-screenshot.2.png, 80%, border=2)]]
    1032
    1133== Bugs/Feature Requests
     
    3153General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
    3254
    33 == Example
    34 
    35 This is standard [WikiFormatting#Tables table wiki formatting]:
    36 {{{
    37 ||= Last Name =||= First Name =||= Email =||= Due =||
    38 || Smith || John || jsmith@gmail.com || $50.00 ||
    39 || Bach || Frank || fbach@yahoo.com || $50.00 ||
    40 || Doe || Jason || jdoe@hotmail.com || $100.00 ||
    41 || Conway || Tim || tconway@earthlink.net || $50.00 ||
    42 }}}
    43 
    44 Without this plugin it would be shown like this:
    45 ||= Last Name =||= First Name =||= Email =||= Due =||
    46 || Smith || John || jsmith@gmail.com || $50.00 ||
    47 || Bach || Frank || fbach@yahoo.com || $50.00 ||
    48 || Doe || Jason || jdoe@hotmail.com || $100.00 ||
    49 || Conway || Tim || tconway@earthlink.net || $50.00 ||
    50 
    51 With this plugin the table is sortable by clicking the headings:
    52 [[Image(tableSorterPlugin-screenshot.2.png,border=2)]]
    53 
    5455== Recent Changes
    5556