mtoledo87 / dropdown-check-list

Automatically exported from code.google.com/p/dropdown-check-list
0 stars 0 forks source link

IE 7 checkbox inside scrolling Div #138

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
** What steps will reproduce the problem?
In IE 7, if you have scrolling div via 
$('#ddl').dropdownchecklist({maxDropHeight: 500 });(using Asp.Net MVC)

Does not happen in Firefox / Chrome.

** What is the expected output? What do you see instead?
The checkboxes are supposed to be fluid with respect to their parent scrolling 
div.

Instead, the checkboxes don't hide inside the div element

** What is your environment?
-- DropDownCheckList version:1.1
-- jQuery version:1.4.2
-- jQuery UI version:
-- Browser and version:IE 7

** Please provide any additional information below/Please attach sample
html

Original issue reported on code.google.com by saket1...@gmail.com on 18 Oct 2010 at 2:43

Attachments:

GoogleCodeExporter commented 8 years ago
Found a quick fix on IE : 

$('.active').css('position', 'relative');
$('.ui-dropdownchecklist-text').css('position', 'relative');

$('.ui-dropdownchecklist-dropcontainer').css('position', 'absolute');

Original comment by saket1...@gmail.com on 18 Oct 2010 at 3:16

GoogleCodeExporter commented 8 years ago
Found a quick Fix for this problem on IE7: 

$('.active').css('position', 'relative'); // for checkbox 
$('.ui-dropdownchecklist-text').css('position', 'relative'); // for label 

$('.ui-dropdownchecklist-dropcontainer').css('position', 'absolute'); // for 
container that holds the div elements containing the checkbox and the label

Original comment by saket1...@gmail.com on 18 Oct 2010 at 3:17

GoogleCodeExporter commented 8 years ago
Please attach sample html that replicates this problem so that I can look into 
it further.

Original comment by womohun...@ittrium.com on 14 Dec 2010 at 9:03

GoogleCodeExporter commented 8 years ago
Please download the v1.2 QA version to see if the positioning problem described 
here has been corrected.

Original comment by womohun...@ittrium.com on 7 Jan 2011 at 5:47

GoogleCodeExporter commented 8 years ago
Confirming that this is not fixed with 1.2QA

Original comment by drea...@gmail.com on 4 Feb 2011 at 10:46

GoogleCodeExporter commented 8 years ago
Even with version 1.3, there remains a problem with scrolling a parent in IE6 
and IE7. Since this is not a problem with IE8 or any of the other major 
browsers, I will be taking no action to correct it.

Original comment by womohun...@ittrium.com on 13 Apr 2011 at 5:00