Skip to main content

Bug Tracker

Side navigation

#7118 closed bug (invalid)

Opened October 06, 2010 12:51PM UTC

Closed October 06, 2010 03:33PM UTC

Last modified March 25, 2011 07:16AM UTC

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)

Attachments (0)
Change History (2)

Changed October 06, 2010 03:33PM UTC by addyosmani comment:1

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!.

Changed March 25, 2011 07:16AM UTC by ducdinh06@gmail.com comment:2

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