Closed (fixed)
Project:
Active Select
Version:
5.x-1.0
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
20 Feb 2007 at 21:04 UTC
Updated:
9 Mar 2008 at 07:09 UTC
Jump to comment: Most recent file
Comments
Comment #1
slybanshee commentedRemark: during steps 1 to 7 Active select must be disabled bacause off known bug (see http://drupal.org/node/121524 for details). Before you will try to create content during step 8 enable Active select in modules section. I attach two screenshots to illustrate the difference between two browsers.
Comment #2
shane birley commentedhttp://drupal.org/node/129027
Comment #3
slybanshee commentedThank you Shane Birley!
Making this closed. For solution see the above link.
Comment #4
francewhoaThe 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