Closed (fixed)
Project:
Content Taxonomy
Version:
5.x-1.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
1 Oct 2007 at 22:38 UTC
Updated:
12 Nov 2008 at 14:34 UTC
Jump to comment: Most recent
Comments
Comment #1
green monkey commentedupdate
I can confirm this as well, but would like to add something
The second level of terms "are there" - the box will change size to adapt to second level.
So, I scrolled down through the "blank" list and just picked any old thing
it grabbed data and I could see choice when saved.
Not having much skill in trouble shooting, I tried to change the theme - hoping that would poriduce a different result --- second box data still blank choices (but actually there)
Comment #2
johnsim commentedI use IE6 SP2, also same problems.
I tried firefox, it work perfectly.
Comment #3
Anonymous (not verified) commentedI also tested IE6 SP2 and I can CONFIRM the bug. It does work as advertised in Firefox and Safari. I would mark this bug critical as it makes the Active Select module of Content Taxonomy unusable for end users in Explorer.
However, I don't know for sure if this bug is in Content Taxonomy or in Active Select. Might be worth running some more tests.
Thanks for all the hard work on this module!
txcrew
Comment #4
Eugene Fidelin commentedI have the same problem in IE6 and IE7
Comment #5
roald commentedI can also confirm this
Comment #6
tostinni commentedThis seems to be a bug in activeSelect see this issue:
elements shows empty texts in IE 7.0.5730.11IC and IE 6.0
Comment #7
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
Comment #8
vacilando commentedI confirm the same problem in latest IE 7.
Comment #9
Anonymous (not verified) commentedThis should be marked as Fixed because the Hierarchical Select module now integrates with Content Taxonomy. http://drupal.org/project/hierarchical_select
Comment #10
green monkey commentedagree
Comment #11
khoomy commentedThanks alot, it is working now in IE7
Comment #12
arhak commentedsubscribing