#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
need: | Review → Test Case |
---|---|
Priority: | high → low |
Resolution: | → invalid |
Status: | new → closed |
comment:2 Changed 13 years ago by
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
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!.