I would either: a) subclass the panel you want, b) override the add method to store the widgets added into a structure rather than directly in the panel, c) override the onAttach method so that once the panel is attached it starts adding the stored widgets as required using a Timer class to affect the delay you want.
or a) subclass the panel you want b) override the add method so that whenever a widget is added you also call the addedWidget.setVisibility(false) method to hide it c) override the onAttach method so that once the panel is attached it starts setting the visibility of added widgets to true using a Timer class to affect the delay you want. //Adam On 9 Dec, 07:15, rajasekhar <[EMAIL PROTECTED]> wrote: > Hi All, > > how to display one by one panel in borderlayout panel,In > my case borderlayout panel is > divided into north,west,center,east,south panels.First I need to > display north panel after displaying north ,need to display > west ,center,east,south panels . Right now the entire panel is > displaying at a time.Please help me on this regard. > > Thanks & Regards, > Rajasekhar --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
