Re: [qooxdoo-devel] load times

2010-10-14 Thread Andy Fuchs
ially on slow (mobile) connections. > > John > > From: Guilherme Aiolfi > Reply-To: qooxdoo Development > Date: Thu, 14 Oct 2010 04:18:31 +0300 > To: qooxdoo Development > Subject: Re: [qooxdoo-devel] load times > > Hi, > > the only way to reduce initial load

Re: [qooxdoo-devel] load times

2010-10-14 Thread John Spackman
: qooxdoo Development Subject: Re: [qooxdoo-devel] load times Hi, the only way to reduce initial loading times is to reduce the amount of javascript it needs to download to initialize your app. You can achieve that using Parts. Better explained here: http://manual.qooxdoo.org/1.2.x/pages/d

Re: [qooxdoo-devel] load times

2010-10-14 Thread Andy Fuchs
Hi Guilherme & Thomas, thanks for your helpful comments. I will check the mentioned documents and strategies and see how much I can improve on the situation. thx andy On 14.10.10 13:00, "thron7" wrote: > You might want to look at this page [1] for general instructions. > > As Guilherme po

Re: [qooxdoo-devel] load times

2010-10-14 Thread thron7
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 lo

Re: [qooxdoo-devel] load times

2010-10-13 Thread Guilherme Aiolfi
Hi, the only way to reduce initial loading times is to reduce the amount of javascript it needs to download to initialize your app. You can achieve that using Parts. Better explained here: http://manual.qooxdoo.org/1.2.x/pages/development/parts_using.html On Thu, Oct 14, 2010 at 3:28 AM, Andy Fuc

[qooxdoo-devel] load times

2010-10-13 Thread Andy Fuchs
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 ---