Bug Tracker

Modify

Ticket #7118 (closed bug: invalid)

Opened 3 years ago

Last modified 2 years ago

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:
Blocking: Blocked by:

Description

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

Change History

comment:1 Changed 3 years ago by addyosmani

  • need changed from Review to Test Case
  • Priority changed from high to low
  • Status changed from new to closed
  • Resolution set to invalid

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 2 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

Please follow the  bug reporting guidlines and use  jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

View

Add a comment

Modify Ticket

Action
as closed
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.