Hi everybody, I am working on a Maskeditor with prototype and scriptaculous. Works all nice with Firefox but in IE I found an old problem. When there is a Combobox (<select>) in your page it will allways be on the top of all other Elements and it''ll ignore all zIndex declarations. I know there is a Workaround with an Iframe placed over the Comobox but i am wondering how to implement this workaround with Draggables component. May one of you have an Idea!?! Thanks Martin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
HI, another workaround is to hide the <select> element if the overlapping element is shown. So you are able to drag and drop it, too. hope thie helps hf bastian On Nov 28, 2007 2:30 PM, madOn <martin.spaeth-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> > Hi everybody, > > I am working on a Maskeditor with prototype and scriptaculous. > Works all nice with Firefox but in IE I found an old problem. When > there is a Combobox (<select>) in your page it will allways be on the > top of all other Elements and it''ll ignore all zIndex declarations. > > I know there is a Workaround with an Iframe placed over the Comobox > but i am wondering how to implement this workaround with Draggables > component. > > May one of you have an Idea!?! > > Thanks Martin > > > >-- -- spread the word ... see www.browsehappy.com ;o) Calvin: Weekends don''t count unless you spend them doing something completely pointless. Join the Greater IBM Connection (http://www.xing.com/premiumgroup-6291.d26b7d) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Maybe I''m just ranting, but can''t you position the iframe inside the draggable? <div class="dragme"> <div class="content"> ... </div> </div> Put your IFrame between .dragme and .content, that should let you drag stuff around and still keep the iframe (I''m not aware of any problems regarding dragging IFrames, but then again, never needed to do that :)) And BTW, http://docs.prototype-ui.com/Util/IframeShim this might be your new best friend :) Best, -Nicolas On Nov 28, 2007 11:30 AM, madOn <martin.spaeth-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> > Hi everybody, > > I am working on a Maskeditor with prototype and scriptaculous. > Works all nice with Firefox but in IE I found an old problem. When > there is a Combobox (<select>) in your page it will allways be on the > top of all other Elements and it''ll ignore all zIndex declarations. > > I know there is a Workaround with an Iframe placed over the Comobox > but i am wondering how to implement this workaround with Draggables > component. > > May one of you have an Idea!?! > > Thanks Martin > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---