Bug Tracker

Opened 13 years ago

Closed 13 years ago

Last modified 13 years ago

#7118 closed bug (invalid)

Incorrect returning data $(this).find('td[rowspan]')

Reported by: t_e_m_p_v_s Owned by:
Priority: low Milestone: 1.4.2
Component: selector Version: 1.4.2
Keywords: Cc:
Blocked by: Blocking:

Description

Firefox return 3 object IE7(maybe another IE) returnt 7 object (all)

Change History (2)

comment:1 Changed 13 years ago by addyosmani

need: ReviewTest Case
Priority: highlow
Resolution: invalid
Status: newclosed

Could you please re-submit your ticket with a valid test case replicating the bug mentioned in your submission? This would allow us to further investigate the issue.

Thanks!.

comment:2 Changed 13 years ago by ducdinh06@…

hello everyone!

i want to disabled 2 checkboxs in gridview by jquery. These checkbox is contained in rowspan of column. I'm using this code: function ShowControls(theCheckbox) {

var chklineonoff = $(theCheckbox).parent().parent().parent().find("span[lineonoff] input");

var chkcircle = $(theCheckbox).parent().parent().parent().find("span[circle] input");

if (theCheckbox.checked) {

chklineonoff.attr('disabled', );

chkcircle.attr('disabled',);

}else{

chklineonoff.attr('disabled', 'disabled');

chkcircle.attr('disabled', 'disabled');

}

}

with theCheckbox is another checkbox in the next column of the table ( table in gridview). I see it ok in FF and Chrome, but not work on IE. Please show me why and how to do it work on IE. Thanks so much

Note: See TracTickets for help on using tickets.