Tobias Koller (GERMO GmbH) schrieb:
>
> Hello,
>
> could anyone explain me the idea of the globalQueues (qx.ui.core.Widget);
>
> I never used them…;)
>
Ideally you should never have to deal with the queues. With Andreas' 
patch to the global queues most of the manual work with the queues is 
gone now.

The queues are critical for the performance of qooxdoo because they make 
it possible to change CSS/HTML/Layout properties in a batch mode. All 
changes to widgets are deferred and applied all at once.

Instead of:

w.setHeight -> change DOM
w.setColor -> change Style
w.add(c) -> change layout


The queues perform:

w.setHeight
w.setColor
w.add(c)

change DOM, Style, layout


I hope this helps,
Best Fabian

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to