Changeset 8339


Ignore:
Timestamp:
07/28/10 11:05:04 (22 months ago)
Author:
CrawfordCurrie
Message:

Item8303: fix sorting in subsidiary header rows

Location:
trunk/TablePlugin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/TablePlugin/data/System/TablePlugin.txt

    r7078 r8339  
    99   * Setting the background color and text color for data cells, for instance to get an alternating zebra pattern 
    1010   * Merging cells (row and col spans) 
     11 
     12Note: By default this plugin uses sorting that is performed on the server. 
     13If you can rely on Javascript being enabled in your browsers, then much 
     14better performance can be obtained with the Foswiki:Extensions.JQTablePlugin. 
    1115 
    1216%TOC% 
     
    174178|  Release: | %$RELEASE% | 
    175179|  Change History: | <!-- specify latest version first -->&nbsp; | 
     180|  28 Jul 2010 | 1.124: Fix sorting in multiple header rows | 
    176181|  05 Apr 2010 | 1.123: New default colors. | 
    177182|  13 Mar 2010 | 1.122: Arthur Clemens: Fixed sorting of columns with mixed data types: numbers, dates, strings, empty cells. | 
     
    208213|  25 Oct 2006 | 1.015: Arthur Clemens: Added support for background colors of sorted column. Columns can be unsorted - sorting order is now: sort ascending, sort descending, unsort. Added attributes =headervalign= and =datavalign=. | 
    209214|  16 Aug 2006 | Michael Daum: Added CSS support for even/odd table rows | 
    210 |  13 Dec 2005 | Arthur Clemens: Added support for =id=, =summary= and =caption= | 
     215|  13 Dec 2005 | Arthur Clemens: Added support for =id=, =summary= and =captione solid'; 
     216$TABLE_FRAME->{box}    = 'border-style:solid';= | 
    211217|  05 Mar 2005 | 1.014: Crawford Currie eliminated deprecated handlers for Dakar | 
    212218|  01 Aug 2004 | Arthur Clemens: Added CSS support for first column and ascending/descending table headers | 
  • trunk/TablePlugin/lib/Foswiki/Plugins/TablePlugin.pm

    r7644 r8339  
    1010 
    1111our $VERSION = '$Rev$'; 
    12 our $RELEASE = '1.123'; 
     12our $RELEASE = '1.124'; 
    1313our $SHORTDESCRIPTION = 
    1414  'Control attributes of tables and sorting of table columns'; 
  • trunk/TablePlugin/lib/Foswiki/Plugins/TablePlugin/Core.pm

    r8276 r8339  
    15051505        if ($writingSortLinks) { 
    15061506            $writingSortLinks = 0; 
    1507             $sortLinksWritten = 1; 
    15081507        } 
    15091508 
     
    15681567            # each table heading 
    15691568            $dataColorCount = 0; 
     1569        } else { 
     1570            $sortLinksWritten = 1; 
    15701571        } 
    15711572 
Note: See TracChangeset for help on using the changeset viewer.