[qooxdoo-devel] Need help on Qooxdoo Component Library (qcl)

2010-05-12 Thread vyankatesh.dudhe
Hi, I have application developed using Qooxdoo, php and MySql. Now we are thinking to use qcl to enchance it's performance . We are emphasizing on "Object Persistence" property of qcl. I would like to know if it will be helpfull for us. Can you provide information / link of how qcl c

Re: [qooxdoo-devel] Progress indicating the status of javascript library

2010-05-12 Thread uglyhunK
Jonathan, Thanks for the input. ---code #status { position:absolute; top: 50%; left: 50%; width:100px; height:100px; margin-top: -50px; margin-left: -50px; } ajax-loader.gif ---end code--- The above code seems t

Re: [qooxdoo-devel] How to debug the build version of a qx app?

2010-05-12 Thread Jim Hunter
I load the '-0,js' version of the file (forgive me if they changed this in 1.x, I am still on 0.8.3) into a good editor and go to that line. Then I look up the file until I see what class it is in and then look at the original source to see where the error was happening. It is a bit of a pain, but

Re: [qooxdoo-devel] How to avoid the cell editor on a double click?

2010-05-12 Thread Derrell Lipman
On Wed, May 12, 2010 at 15:56, Jörg Sawatzki wrote: > Hey guys, > > thanks for your help so far. Gonna try both solution and if nothing > suits my needs I will just ask the user for a new name in a popup :) > Jörg, rsantiagopaz's suggestion is better than mine. Set each column to not be editable

Re: [qooxdoo-devel] How to avoid the cell editor on a double click?

2010-05-12 Thread Jörg Sawatzki
Hey guys, thanks for your help so far. Gonna try both solution and if nothing suits my needs I will just ask the user for a new name in a popup :) Thanks once again Jörg Am Mittwoch, den 12.05.2010, 07:05 -0700 schrieb rsantiagopaz: > Jörg I believe mabe you can use for example something like

[qooxdoo-devel] How to debug the build version of a qx app?

2010-05-12 Thread Jörg Sawatzki
Hi folks, as some of you already might now, I am developing a web based file manager which will be part of the MyServ project (myserv-project.org), a portal server and learning platform for schools. The server part is django, the file manager ("MyFM") is qooxdoo and talks to the server via JSON-R

Re: [qooxdoo-devel] Selecting a tree item's parent

2010-05-12 Thread coolbloke1324
OK, all solved, final code: // Get the parent parentNode = currentNode.get("parent"); parentData = parentNode.getModel(); // Add data to parent parentData.get("kids").push(qx.data.marshal.Json.createModel(data, true)); // Remove th

Re: [qooxdoo-devel] Selecting a tree item's parent

2010-05-12 Thread coolbloke1324
OK, I've gotten most of this working now with the code: // Get the parent parentNode = currentNode.get("parent"); parentData = parentNode.getModel(); // Remove the selection parentNode.remove(currentNode); // Add data to parent parentData.get("kids").push(qx.data.marshal.Json.createModel(data,

Re: [qooxdoo-devel] Selecting a tree item's parent

2010-05-12 Thread coolbloke1324
Hey ya, That doesn't work... I'll explain a bit more about what I am trying to achieve. When a user double-clicks a tree item, I need to remove the double-clicked item from it's parent, then load new tree items from a json source into the parent. Currently, if I use an event to listen for a d

Re: [qooxdoo-devel] Require a "live" form; what are my options?

2010-05-12 Thread Werner Thie
Correct, I stopped the server Werner thron7 wrote: >> If you read that far give it a try and hit http://nqx.thieprojects.ch >> which gives you a few buttons... > > Werner, going to that URL it just shows a "Usually not shown" message !? > > T. > > --

Re: [qooxdoo-devel] Selecting a tree item's parent

2010-05-12 Thread Daniel Wagner
Hi, the data binding controllers' selection property takes a qx.data.Array object, try using controller.setSelection(new qx.data.Array(parentNode)); Regards, Daniel coolbloke1324 schrieb: > Hi ya, > > I'm trying to select a tree item's parent when a particular item is > selected. > > I've t

[qooxdoo-devel] Selecting a tree item's parent

2010-05-12 Thread coolbloke1324
Hi ya, I'm trying to select a tree item's parent when a particular item is selected. I've tried this code (currentNode is the item clicked on): parentNode = currentNode.get("parent"); controller.setSelection(parentNode); I've also tried: currentSel = controller.getSelection(); currentNode = c

Re: [qooxdoo-devel] Enterprise-ready Backend for Qooxdoo?

2010-05-12 Thread Cui,Daojun
Hi John, I surely have great interest for the Qooxdoo Server Objects, I will be checking it out and give it a try. I will come back on this afterwards. Thanks a lot for the information. :-) Cheers, Daojun Von: John Spackman [mailto:john-li...@zenesis.com]

Re: [qooxdoo-devel] How to select an item in selectbox?

2010-05-12 Thread rsantiagopaz
I can't understand your case. Give me a little example for the Playground -- View this message in context: http://qooxdoo.678.n2.nabble.com/How-to-select-an-item-in-selectbox-tp5029330p5041286.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] How to avoid the cell editor on a double click?

2010-05-12 Thread rsantiagopaz
Jörg I believe mabe you can use for example something like tableModel.setColumnEditable(0, true); table.startEditing(); on click select rename. And use the Table "dataEdited" event to set tableModel.setColumnEditable(0, false); I use somthing like this in one application -- View this messag

[qooxdoo-devel] problem running code for Tutorial Part 4

2010-05-12 Thread digitalsatori
I'm a newbie to qooxdoo. I checked out the tutorial code from the git repository mentioned in the documents. When I launch the page, the script did run well and I could post a message to twitter without any problem. But the script only allow me to post 1 message. As I try to post the second mess

Re: [qooxdoo-devel] Errors with TimeSpinner widget

2010-05-12 Thread alexander.volik
Oh, thanks! -- View this message in context: http://qooxdoo.678.n2.nabble.com/Errors-with-TimeSpinner-widget-tp5038029p5040579.html Sent from the qooxdoo mailing list archive at Nabble.com. -- _

Re: [qooxdoo-devel] Progress indicating the status of javascript library

2010-05-12 Thread thron7
Also, see this recent thread on the ml: http://qooxdoo.678.n2.nabble.com/Reorganisation-of-abandoned-ProgressBar-contrib-tp5019268p5019268.html Maybe you want join forces with Christian. T. On 05/12/2010 09:53 AM, uglyhunK wrote: > > Hi, > > I just deployed a small application but, as expected

Re: [qooxdoo-devel] Progress indicating the status of javascript library

2010-05-12 Thread Jonathan Weiß
Hello uglyhunK, at the moment there is no loading indicator widget in qooxdoo. You could add an animated gif to your index.html file and hide it when your qooxdoo application has loaded. Be sure to center the image and make it the topmost HTML element. Cheers, Jonathan - Jonathan Weiß F

Re: [qooxdoo-devel] Errors with TimeSpinner widget

2010-05-12 Thread Jonathan Weiß
Hello Alexander, I assume that you try to use the TimeSpinner together with qoodoo 1.1 or trunk. The Manifest.json shows that this contribution is only compatible to qooxdoo 0.8. Please contact one of the contribution authors (mentioned in the same file) to get it working with qooxdoo 1.1. Che

Re: [qooxdoo-devel] Require a "live" form; what are my options?

2010-05-12 Thread thron7
> If you read that far give it a try and hit http://nqx.thieprojects.ch > which gives you a few buttons... Werner, going to that URL it just shows a "Usually not shown" message !? T. -- ___

Re: [qooxdoo-devel] Missing destruct definitions in qx.io.remote.transport.XmlHttp (v1.1)

2010-05-12 Thread Peter Schneider
Hi Martin, I am using FireFox 3.6.3 with Firebug Version 1.5X.3 But I am a bit confused about "[...]These warnings should be disabled in most of the modern browsers[...]". The debug warnings do _only_ appear when I run a application which was build with "generate source-disposerDebug". In those b

[qooxdoo-devel] Progress indicating the status of javascript library

2010-05-12 Thread uglyhunK
Hi, I just deployed a small application but, as expected, there is pause of about 12 secs for the initial page to appear. It is obvious that the culprit here is javascript resource. I expected the webserver to compress (gzip) the file but that did not happen. I will look into that. But still I pr