Project:Active Select
Version:5.x-1.0
Component:Code
Category:support request
Priority:normal
Assigned:Unassigned
Status:active

Issue Summary

I am using Active Select and it works me well in Firefox. But when I use IE7 the dropdown lists stay in white, they don't show anything, alone the "Parent" works.
Some idea of for that this happens?

Thank you

Comments

#1

Apparently I could fix that it worked with the IE changing the following line 173 (aprox) from activeselect.js

    --     var e = document.createEventObject();
   ++     var e = document.createEventObject('Microsoft.XMLHTTP');

after the change to my it is working me very well, with the firefox like with the IE. So that other they prove it

#2

Status:active» closed (fixed)

Apparently I could fix that it worked with the IE changing the following line 173 (aprox) from activeselect.js

   --     var e = document.createEventObject();
   ++     var e = document.createEventObject('Microsoft.XMLHTTP');

after the change to my it is working me very well, with the firefox like with the IE. So that other they prove it

#3

The following works for me:

Change line 156 (approx) from activeselect.js

-- $(this.targets[targetIndex]).append(new Option(text, value, false, selected));

++ if (navigator.appName == "Microsoft Internet Explorer") {
++ this.targets[targetIndex].add(new Option(text, value, false, selected));
++ }else{
++ $(this.targets[targetIndex]).append(new Option(text, value, false, selected));
++ }

Thanks to olemsa: http://drupal.org/node/147076#comment-561190

#4

Status:closed (fixed)» active

I've patched and got working into IE6. But going into IE7 and clicking select boxes, any option jump off

#5

Fix [#1] and [#3] make Activeselect to work in IE7 and IE6 properly!

nobody click here