Changeset 8349


Ignore:
Timestamp:
07/29/10 14:16:20 (22 months ago)
Author:
CrawfordCurrie
Message:

Item8303: reverted out this fix, as it's incompatible with sorting by clicking on the footer rows of the table

Location:
trunk/TablePlugin
Files:
3 edited

Legend:

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

    r8340 r8349  
    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  
    12 Note: By default this plugin uses sorting that is performed on the server. 
    13 If you can rely on Javascript being enabled in your browsers, then much 
    14 better performance can be obtained with the Foswiki:Extensions.JQTablePlugin. 
    1511 
    1612%TOC% 
     
    178174|  Release: | %$RELEASE% | 
    179175|  Change History: | <!-- specify latest version first -->&nbsp; | 
    180 |  28 Jul 2010 | 1.124: Fix sorting in multiple header rows | 
    181176|  05 Apr 2010 | 1.123: New default colors. | 
    182177|  13 Mar 2010 | 1.122: Arthur Clemens: Fixed sorting of columns with mixed data types: numbers, dates, strings, empty cells. | 
     
    213208|  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=. | 
    214209|  16 Aug 2006 | Michael Daum: Added CSS support for even/odd table rows | 
    215 |  13 Dec 2005 | Arthur Clemens: Added support for =id=, =summary= and =captione solid' | 
     210|  13 Dec 2005 | Arthur Clemens: Added support for =id=, =summary= and =caption= | 
    216211|  05 Mar 2005 | 1.014: Crawford Currie eliminated deprecated handlers for Dakar | 
    217212|  01 Aug 2004 | Arthur Clemens: Added CSS support for first column and ascending/descending table headers | 
  • trunk/TablePlugin/lib/Foswiki/Plugins/TablePlugin.pm

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

    r8339 r8349  
    15051505        if ($writingSortLinks) { 
    15061506            $writingSortLinks = 0; 
     1507            $sortLinksWritten = 1; 
    15071508        } 
    15081509 
     
    15671568            # each table heading 
    15681569            $dataColorCount = 0; 
    1569         } else { 
    1570             $sortLinksWritten = 1; 
    15711570        } 
    15721571 
Note: See TracChangeset for help on using the changeset viewer.