Hi,

On Tuesday February 2 2010 08:27:14 [email protected] wrote:
> how can i simple hide the whole application and show it when it is
>  complete?
Technically you can use

--snip--
// in the "main" method of your "Application.js"
this.getRoot().setBlockerColor("white");
this.getRoot().setBlockerOpacity(1.0);
this.getRoot().block();

// Later on when everything is complete
this.getRoot().unblock();
--snip--

But this is generally a bad idea. It does result in a very bad user experience 
concerning how the user does grasp the performance. It's better for an user to 
see the UI as early as possible and the data displayed by the UI elements are 
loaded during the startup.
This way the applications "feels" faster for the user.

Just my 2cents :)

cheers,
  Alex

------------------------------------------------------------------------------
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to