Run into yet another omg-I-cant-belief-IE-cant-do-this problem. I made a dragable popup and I want to keep it ontop of everything else, but allow the user to keep working under it. However, when other objects are attached the dom, they appear *over* the popup I previously created.
This can be fixed, very easily, by simply setting the z-order value in the style sheet. This works on Opera,Firefox and Chrome, but apperently is too complex for IE. So I then thought Id simply remove the popup and reattach it quickly, thinking it would go ontop by itself then. Unfortuntely it dosnt. In fact it seems to go under absolutely everything. So, in summery; How can I ensure, on all browsers, that this "overlay" popup stays ontop no mater what. The code I tried to use when removing/reattaching is very simply; =========== overlayPopUp current = MyApplication.overlayPopUpsOpen.get(0); RootPanel.get().remove(current); RootPanel.get().add(current); ======== This results in the popup going to the bottom. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
