Hi all! I have the table of droppable blocks http://portal.lgo.ru/adm/konkurs/exp_laureats2.htm and some colored Draggable blocks. When I trying to Dragg some of that - it is became invisible. Whats wrong? PS it is the third of my messages, but I don''t see other of my messages :( Why? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Sorry, see here - http://portal.lgo.ru/adm/konkurs/test.htm The Draggable grey block from the second columl is disapearing when we are dopping it to the 3 or 4 column. From 3 column - disapearing in 4 column. Something wrong in z-index? How I can place Draggable block upper than Droppable? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Sorry, I can''t read your tests. The first requires HTTP authentication, this one one you linked below is in Russian, and the page doesn''t look as you described. You may be correct by thinking about z-index. It''s a funny beast, as the z-index is not global page level, but scoped hierarchically. I can''t describe it well at the moment, but if you still think that''s your problem, make sure you understand how z-index works. TAG tomg-PGZyUNKar/Q@public.gmane.org On Dec 17, 2006, at 7:44 AM, denvor wrote:> > Sorry, see here - http://portal.lgo.ru/adm/konkurs/test.htm > The Draggable grey block from the second columl is disapearing > when we > are dopping it to the 3 or 4 column. From 3 column - disapearing in 4 > column. > > Something wrong in z-index? How I can place Draggable block upper than > Droppable? > > > >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Thanks! The probleb is solved.The Draggable DIV has the parent Dropable DIV like this: <div class="droppable"> <div class="draggable"> Content of the draggable </div> </div> After I am changing the construction: <div class="droppable"> </div> <div class="draggable"> Content of the draggable </div> this problem was solved. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---