Opened 16 years ago
Closed 15 years ago
#1665 closed bug (fixed)
ui.tablesorter uses XPath selectors
Reported by: | deerchao | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.2.2 |
Component: | ui | Version: | 1.2.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
The zebra widget won't work unless change the 803,804 lines from:
$("> tbody:first/
tr:visible:even",table).removeClass(table.config.widgetZebra.css[1]).addClass(table.config.widgetZebra.css[0]);
$("> tbody:first/
tr:visible:odd",table).removeClass(table.config.widgetZebra.css[0]).addClass(table.config.widgetZebra.css[1]);
to:
$("> tbody:first
tr:visible:even",table).removeClass(table.config.widgetZebra.css[1]).addClass(table.config.widgetZebra.css[0]);
$("> tbody:first
tr:visible:odd",table).removeClass(table.config.widgetZebra.css[0]).addClass(table.config.widgetZebra.css[1]);
Note: See
TracTickets for help on using
tickets.
This seems to have been fixed.