Bug Tracker

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]);

Change History (1)

comment:1 Changed 15 years ago by rworth

Resolution: fixed
Status: newclosed

This seems to have been fixed.

Note: See TracTickets for help on using tickets.