You might want to look at this page [1] for general instructions.

As Guilherme pointed out, the general strategy is to make the initial
part of your app as light as possible. This means to be as lazy as
possible with code that you essentially don't need at start-up time.
Parts (which have to be loaded on demand) is a good way to address this.

Parts also allow you to defer the loading of resource (image) and I18N
(translation) information, which both can add a significant footprint,
depending on their use in the application.

Third, performance is usually *perceived* performance, and you can do a
lot to change that perception, e.g. with a start-up splash, progress
indicator, incremental rendering, etc. You might want to look at
Derrell's Progressive widget [2].

T.

[1]
http://manual.qooxdoo.org/1.2.x/pages/development/enterprise_application_development.html
[2] http://demo.qooxdoo.org/1.2.x/apiviewer/#qx.ui.progressive

On 10/14/2010 02:28 AM, Andy Fuchs wrote:
> Is there any documentation available how to speed-up inital loading of my
> webapp? Especially on low profile machines, i.e. iPad...
> 
> Does it make a difference, if I prepare my page(s) in the constructor
> instead in 'members:'?
> 
> Any hint appreciated.
> 
> thx
> 
> andy
> 
> 
> 
> 
> 
> ------------------------------------------------------------------------------
> Beautiful is writing same markup. Internet Explorer 9 supports
> standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
> Spend less time writing and  rewriting code and more time creating great
> experiences on the web. Be a part of the beta today.
> http://p.sf.net/sfu/beautyoftheweb
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
> 
> 

------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to