Search and Top Navigation
#1665 closed bug (fixed)
Opened September 19, 2007 01:27AM UTC
Closed October 27, 2007 02:46AM UTC
Last modified February 26, 2009 11:08AM UTC
ui.tablesorter uses XPath selectors
Reported by: | deerchao | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.5 |
Component: | ui.core | 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]);
This seems to have been fixed.