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

armand0’s picture

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

armand0’s picture

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

francewhoa’s picture

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

tassoman’s picture

Status: Closed (fixed) » Active

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

Eugene Fidelin’s picture

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

haza’s picture

Status: Active » Closed (won't fix)

This version of Active Select is not supported anymore. The issue is closed for this reason.
Please upgrade to a supported version and feel free to reopen the issue on the new version if applicable.