Re: [qooxdoo-devel] HTML5 offline manifest

2011-10-12 Thread sub
Hi, I've noticed that this feature request hasn't been progressed -> http://bugzilla.qooxdoo.org/show_bug.cgi?id=4248 Are there any new plans to add this? The cache manifest is a great html5 feature and it's not just for offline usage - it provides a cleaner way to locally cache assets for online

[qooxdoo-devel] UploadMgr connection to Backend

2011-10-12 Thread randylb
I have been trying to implement the UploadMgr library and have been able to install implement the classes but so far I have been unable to connect the backend and accomplish a file upload. Perhaps I am failing to grasp the obvious...nonetheless I have had no success...any help would be appreciated.

Re: [qooxdoo-devel] Need Help/HowTo: getHierarchy | getPreviousNodeOf

2011-10-12 Thread MikeschTheCat
Hi Tristan, this is the Json Response: {"name":"/","children":[ {"name":"Virtual_Images/","children":[ {"name":"bacula/","children":[ {"name":"bin/","children":[ {"name":"working/"} ]} ]} ]} ]} regards Mikesch -- View this message

Re: [qooxdoo-devel] Need Help/HowTo: getHierarchy | getPreviousNodeOf

2011-10-12 Thread MikeschTheCat
Hi Tristan, as you can see in my Code (listed inside this Mailing), i use the qx.data.controller.Tree Controller() ;=) // create the controller var controller = new qx.data.controller.Tree(null, tree, "children", "name"); ... // connect the store and the tree store.bind("model",

Re: [qooxdoo-devel] Need Help/HowTo: getHierarchy | getPreviousNodeOf

2011-10-12 Thread Tristan Koch
Hi, are you using the tree stand-alone or in combination with a controller [1] (and model)? Tristan [1] http://demo.qooxdoo.org/current/apiviewer/#qx.data.controller.Tree Am 12.10.2011 um 14:43 schrieb MikeschTheCat: > Hi, > > i need a getHierarchy function for the qx.ui.tree.Tree(), so i ha

Re: [qooxdoo-devel] Problems with themed decorators - shadow size increases with use

2011-10-12 Thread Tristan Koch
Hi John, > Is this intentional? I don't think so. At least, we should reproduce and check. Please go ahead an file a bug report. Tristan -- All the data continuously generated in your IT infrastructure contains a def

Re: [qooxdoo-devel] Changing the default Appearance of a listitem created by data binding

2011-10-12 Thread Christian Hagendorn
Hi Jean-Noël, sure, you can use the delegate: var delegate = { configureItem : function(item) { item.setAppearance("myAppearance"); } } http://demo.qooxdoo.org/current/apiviewer/#qx.ui.list.core.IListDelegate~configureItem

[qooxdoo-devel] Changing the default Appearance of a listitem created by data binding

2011-10-12 Thread Jean-Noël Rivasseau
Hi everyone, I have a List that is databinded to a model. I can theme the List by calling .setAppearance("MyListAppearance") on it, but I can't do the same for each ListItem because they are created not by me but by the databinding, and they take the default "listitem" appearance. Does anyone know

[qooxdoo-devel] Job Offer: JavaScript /HTML5 developer (full-time)

2011-10-12 Thread Andreas Ecker
Hi, for a full-time position we are looking for experienced JavaScript developers. You will become part of a dedicated team, working closely with qooxdoo core developers and application developers. A solid understanding of modern web technologies is required, particularly JavaScript, but also

[qooxdoo-devel] Need Help/HowTo: getHierarchy | getPreviousNodeOf

2011-10-12 Thread MikeschTheCat
Hi, i need a getHierarchy function for the qx.ui.tree.Tree(), so i have been tested, debug anything, but i find not a working function :( While the function getHierachy is not avaible in the tree.Tree Class, i have tested with getPreviousNodeOf, but i dont find the right way :( Can anyone please

Re: [qooxdoo-devel] Table perfomance with many columns

2011-10-12 Thread Martin Wittemann
Hey, I think the main reason for that is still the virtualization only for rows. The columns don't get virtualized which is ofc a problem in the case of a lot of columns. So even if there is an additional factor which reduces the speed there, you wont get it working fast enough if you want to ha

[qooxdoo-devel] Job Offer: qooxdoo Freelancing (on-site)

2011-10-12 Thread Andreas Ecker
Hi, for a larger qooxdoo-based project we are looking for experienced JavaScript freelancers. You will become part of a dedicated project team, working closely with qooxdoo core developers. A solid understanding of modern web technologies, particularly JavaScript, is required. You should be f

Re: [qooxdoo-devel] pending RPC call

2011-10-12 Thread Fink, Andreas
>I would do that on the server side. >Launch the server "export to excel" in a thread that you monitor on the server >"entrance". >In case of time out, destroy the thread (an clean the resources : files, ...) and >build a response that a time out occurred. Thank you for the hint, this is really go

[qooxdoo-devel] Problems with themed decorators - shadow size increases with use

2011-10-12 Thread John Spackman
Hi I'm trying to apply a CSS shadow for focused buttons but I find that after the shadow has been activated, subsequent uses make the shadow box to be one pixel wider and higher than before. After some experimentation, this appears to be something to do with dynamic combination of mixing decorato

Re: [qooxdoo-devel] pending RPC call

2011-10-12 Thread Jean-Baptiste BRIAUD -- Novlog
Hi, I would do that on the server side. Launch the server "export to excel" in a thread that you monitor on the server "entrance". In case of time out, destroy the thread (an clean the resources : files, ...) and build a response that a time out occurred. => nothing to change on client side. T

Re: [qooxdoo-devel] validate ajax request? 2 problems

2011-10-12 Thread Tristan Koch
Hi, In saveData, you trust on the return value of validate. With asynchronous validation, however, the return value is always falsy. Thats because at the time the result of the validation is still unknown. Listen to the managers "complete" event instead. What I noticed is that you are wrapping

Re: [qooxdoo-devel] pending RPC call

2011-10-12 Thread Fink, Andreas
Hi Fritz, Hi Daniel, thanks for you for the hint and proposed solution. I think I'll try the solution with my own timer. Just wanted to know if there is a framework provided solution for this use case. I tried to realize it with callAsyncListeners method of RPC but I wasn't able to stop the defa

[qooxdoo-devel] Table perfomance with many columns

2011-10-12 Thread NickTee
Hi Guys, I've noticed that the performance of tables seems to degrade almost exponentially with the number of columns in the table. I realise there is a bug relating to this issue already (http://bugzilla.qooxdoo.org/show_bug.cgi?id=4237) but I think the problem is something other than what's des

Re: [qooxdoo-devel] pending RPC call

2011-10-12 Thread Fritz Zaucker
Hi Andreas, you'll also have to deal with timeouts of the webserver. It took a while until I realized that for Apache there is a separate TimeOut directive (http://httpd.apache.org/docs/2.0/mod/core.html) Cheers, Fritz On Wed, 12 Oct 2011, Daniel Lenggenhager wrote: > Hi Andreas, > > M... I