Re: [qooxdoo-devel] Qooxdoo and JS Code

2012-10-01 Thread introkun
fei wang wrote > If I want to call 'init()' after all qooxdoo UI loaded, How do I do ? Try implement method *finalize* in your Application class ( http://demo.qooxdoo.org/current/apiviewer/#qx.application.IApplication ).

Re: [qooxdoo-devel] Qooxdoo and JS Code

2012-10-01 Thread introkun
Here is JsFiddle for you: http://jsfiddle.net/RAjzd/4/ -- View this message in context: http://qooxdoo.678.n2.nabble.com/Qooxdoo-and-JS-Code-tp7581539p7581545.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] Qooxdoo and JS Code

2012-10-01 Thread introkun
fei wang wrote > Q: I want to call the function "init()", how need I do ? Just call: init(); -- View this message in context: http://qooxdoo.678.n2.nabble.com/Qooxdoo-and-JS-Code-tp7581539p7581543.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] Qooxdoo and JS Code

2012-10-01 Thread introkun
And place your script file into source\script folder. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Qooxdoo-and-JS-Code-tp7581539p7581541.html Sent from the qooxdoo mailing list archive at Nabble.com. -

Re: [qooxdoo-devel] Qooxdoo and JS Code

2012-10-01 Thread introkun
Just include your script into source\index.html and call your functions. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Qooxdoo-and-JS-Code-tp7581539p7581540.html Sent from the qooxdoo mailing list archive at Nabble.com. --

Re: [qooxdoo-devel] How to see the source code ?

2012-09-28 Thread introkun
Take a look into qooxdoo-2.0.2-sdk.ZIP\application\demobrowser\source\class\demobrowser\demo\ -- View this message in context: http://qooxdoo.678.n2.nabble.com/How-to-see-the-source-code-tp7581518p7581521.html Sent from the qooxdoo mailing list archive at Nabble.com. --

Re: [qooxdoo-devel] How to see the source code ?

2012-09-28 Thread introkun
Use button "JS Code" in the top right corner of the page. -- View this message in context: http://qooxdoo.678.n2.nabble.com/How-to-see-the-source-code-tp7581518p7581519.html Sent from the qooxdoo mailing list archive at Nabble.com. --

Re: [qooxdoo-devel] qx.ui.tree.Tree handle "render done" event

2012-09-27 Thread introkun
Hello. Filter class is here: http://pastebin.com/wPip2HwM Filtering takes 1-2 seconds. But I see results in the tree after long time. =( Here is results of Chrome profiler (9 seconds for qooxdoo, 2 seconds for Chrome):

Re: [qooxdoo-devel] qx.ui.tree.Tree handle "render done" event

2012-09-26 Thread introkun
Btw there are 400 items in the tree. -- View this message in context: http://qooxdoo.678.n2.nabble.com/qx-ui-tree-Tree-handle-render-done-event-tp7581486p7581488.html Sent from the qooxdoo mailing list archive at Nabble.com. -

[qooxdoo-devel] qx.ui.tree.Tree handle "render done" event

2012-09-26 Thread introkun
Hello. I'm using *qx.ui.tree.Tree*, *qx.data.controller.Tree* and JavaScript associative array as Model (qooxdoo v1.6). I have tree filtering functionality and after filtering I'm cleaning tree Model ( Model.getChildren().removeAll() ) and put new data into tree Model ( Model.getChildren().push(Ch