Re: [qooxdoo-devel] RPC "local timeout expired"

2007-07-31 Thread Tobias Koller (GERMO GmbH)
Hi, can you give us your code-snippet that we can check it? What backend do you use? Java? PHP? Tobias -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Enaldo Amorim Gesendet: Dienstag, 31. Juli 2007 15:52 An: qooxdoo-devel@lists.sourceforge.net B

Re: [qooxdoo-devel] How to use ContendCellImage Class in ListView ?

2007-07-31 Thread Leander Hanwald
If I'm not absolutly wrong: you can't The listview is a virtual component, that means that not all entries in the list are separate components like in a normal tree view or list. They are more like "dummies" that shows the current viewable content of the list. So there is no component for the imag

Re: [qooxdoo-devel] How to use ContendCellImage Class in ListView ?

2007-07-31 Thread Joachim Weber
Hi, Alex Back schrieb: > Hi Joachim, > > Joachim Weber wrote: >> Hi, >> >> I try to fill a qx.ui.listview.ListView with Data-fields containing images. >> >> The following code works fine: >> >> var lc = >> { >> name : { label : "Name", width : 200, type : "text" }, >> icon : { width : 28

Re: [qooxdoo-devel] Howto map JS object as parameter to RPC method by Java

2007-07-31 Thread Andreas Junghans
Hi, Am 30.07.2007 um 15:41 schrieb VojBarZ: > I'm trying to send JS object as parameter to RPC method at the java > side. Communication is OK, but I don't know how to set the type of the > given object (or how to retype JSONObject to the java object) > > If I try the following code, the JSON conv

Re: [qooxdoo-devel] Tree Virtual - how to remove all nodes (7.1)

2007-07-31 Thread Derrell Lipman
On 7/31/07, mshillin <[EMAIL PROTECTED]> wrote: > > I can confirm, this patch fixes the problem. Great, thanks. I've checked in the fix. Derrell - This SF.net email is sponsored by: Splunk Inc. Still grepping through log fi

Re: [qooxdoo-devel] Appearance issues

2007-07-31 Thread Jim Hunter
This seems to work, or at least I no longer get errors at startup complainign about the appearances. Thanks, Jim On 7/30/07, Fabian Jakobs <[EMAIL PROTECTED]> wrote: > > Hi Jim, > > I just migrated to 0.7.2-pre (r9171) and my appearances are generating > > errors when I try and run the app. I l

Re: [qooxdoo-devel] Table column sorting issue in 0.6.6

2007-07-31 Thread Phaneesh N
Hi Peter, Here is the code: tabStructParameter = new qx.ui.table.SimpleTableModel(); tabStructParameter.setColumns(["ID", "Name", "Value", "Type"]); tabStructParameter.setColumnEditable(0, false); tabStructParameter.setColumnEditable(1, false); tabStructParameter.setColumnEdit

Re: [qooxdoo-devel] Tree Virtual - how to remove all nodes (7.1)

2007-07-31 Thread mshillin
I can confirm, this patch fixes the problem. Thanks for the quick response! mshillin Derrell Lipman wrote: > > On 7/31/07, mshillin <[EMAIL PROTECTED]> wrote: >> >> I cannot figure out how to remove all nodes in the tree. (7.1) >> >> Calling tree.getDataModel().prune(0, true) throws an except

Re: [qooxdoo-devel] Tree Virtual - how to remove all nodes (7.1)

2007-07-31 Thread Derrell Lipman
On 7/31/07, mshillin <[EMAIL PROTECTED]> wrote: > > I cannot figure out how to remove all nodes in the tree. (7.1) > > Calling tree.getDataModel().prune(0, true) throws an exception > > > this._nodeArr[node.parentNodeId] has no properties - in > SimpleTreeDataMod... (line 537) You're doing it cor

[qooxdoo-devel] Tree Virtual - how to remove all nodes (7.1)

2007-07-31 Thread mshillin
I cannot figure out how to remove all nodes in the tree. (7.1) Calling tree.getDataModel().prune(0, true) throws an exception this._nodeArr[node.parentNodeId] has no properties - in SimpleTreeDataMod... (line 537) Stepping through the code, it looks like it is trying to delete children of th

Re: [qooxdoo-devel] RPC "local timeout expired"

2007-07-31 Thread Derrell Lipman
On 7/31/07, Enaldo Amorim <[EMAIL PROTECTED]> wrote: > Hi Derrell, > > even if I run the RPC tests in > application/demobrowser/source/html/test/RPC_*.html I get the same > error. Is the backend server running? You can't run those from the qooxdoo site, since it does not provide a backend. You h

Re: [qooxdoo-devel] TreeVirtual with checkboxes

2007-07-31 Thread Derrell Lipman
On 7/30/07, dperez <[EMAIL PROTECTED]> wrote: > > Hi, > > I'm implementing the checkbox stuff in > qx.ui.treevirtual.SimpleTreeDataCellRenderer, and have no problems, apart > from this: > > I need to set the checked state in my checkbox. > I do it in this event: > qx.ui.table.cellrenderer.Abstrac

Re: [qooxdoo-devel] RPC "local timeout expired"

2007-07-31 Thread Enaldo Amorim
Hi Derrell, even if I run the RPC tests in application/demobrowser/source/html/test/RPC_*.html I get the same error. Att Enaldo Amorim 2007/7/31, Derrell Lipman <[EMAIL PROTECTED]>: > On 7/30/07, Enaldo Amorim <[EMAIL PROTECTED]> wrote: > > Hi, > > > > I'm doing rpc async call's and It's not wor

Re: [qooxdoo-devel] qooxdoo-devel Digest, Vol 14, Issue 4

2007-07-31 Thread Derrell Lipman
On 7/30/07, B. ilgin <[EMAIL PROTECTED]> wrote: > hi all... > > i wanna filtering data in a qooxdoo table... of course this operation be on > the fly... but how to??? You can do that using the "Remote" table model. Alternatively, you can do something similar to what treevirtual does, and maintain

Re: [qooxdoo-devel] RPC "local timeout expired"

2007-07-31 Thread Derrell Lipman
On 7/30/07, Enaldo Amorim <[EMAIL PROTECTED]> wrote: > Hi, > > I'm doing rpc async call's and It's not working. I'm getting the > exception "Local error 1: Local time-out expired", and a javascript > error: "response.id has no properties". It sounds like you're not getting a response back from the

[qooxdoo-devel] RPC "local timeout expired"

2007-07-31 Thread Enaldo Amorim
Hi, I'm doing rpc async call's and It's not working. I'm getting the exception "Local error 1: Local time-out expired", and a javascript error: "response.id has no properties". When I do sync call's I always get null result. Even if I run the DemoBrowser RPC test's I get this errors. - Windows

Re: [qooxdoo-devel] Table column sorting issue in 0.6.6

2007-07-31 Thread Peter Schneider
Hi Phaneesh, unfortunately I've forgotten to look at the qooxdoo version number you've added to your query. Could you please send me (PM or here in the forum) some code, that you are using? I think the function/method where you call the setColumnSortable() method should be enough. I hope I can re-

Re: [qooxdoo-devel] Error in build version, that is related to qx.ui.core.Font

2007-07-31 Thread Dioc
Hello, I found the cause of the error. There was the error in our Application.js. Namespace was missing in #resource setting. As a result resource files of our application were not copied in build version. Best regards, Dioc -- View this message in context: http://www.nabble.com/Error-in-buil

Re: [qooxdoo-devel] Table column sorting issue in 0.6.6

2007-07-31 Thread Fabian Jakobs
Hi Phaneesh, > Hi Fabian, > > Thanks for the reply. > How to fix this in the current 0.6.6 code? > Is there a way to do this? If it is not working in 0.6.6 it must have some other reason. The bug just fixed was introduced due to a cleanup in the table namespace, which happened only in the 0.7 bra

Re: [qooxdoo-devel] Table column sorting issue in 0.6.6

2007-07-31 Thread Phaneesh N
Hi Fabian, Thanks for the reply. How to fix this in the current 0.6.6 code? Is there a way to do this? - Original Message From: Fabian Jakobs <[EMAIL PROTECTED]> To: qooxdoo Development Sent: Tuesday, July 31, 2007 2:13:43 PM Subject: Re: [qooxdoo-devel] Table column sorting issue in 0

Re: [qooxdoo-devel] TabIndex problem for qx.ui.form.TextField() in FIREFOX browser

2007-07-31 Thread Sebastian Werner
I don't think that this is easily possible in a pre-0.7 version because so many changes have been made. Also this fix is a combination of a lot of smaller fixes in many files at many lines. If you really need it working there is not any other option than upgrading to 0.7.1. I think it should n

Re: [qooxdoo-devel] TabIndex problem for qx.ui.form.TextField() in FIREFOX browser

2007-07-31 Thread sucharitha lakshmi
Hi, I am using 0.7-alpha1 (r6775) version and i shouldnt able to change the other version as everything in my project has been devloped with this api.Soi should include the lines of code to qx.js required for this fix.Please let me know the same required to fix this issue. Regards, Sucharitha On

[qooxdoo-devel] Error in build version, that is related to qx.ui.core.Font

2007-07-31 Thread Dioc
Hello, I am trying to make build version of our application and stumbled across a problem. When I run build version of application the following error occurs as shown in Firefox console: [Exception... "'Error: Error in property size of class qx.ui.core.Font in method setSize with incoming value

Re: [qooxdoo-devel] Table column sorting issue in 0.6.6

2007-07-31 Thread Fabian Jakobs
Peter Schneider schrieb: > Hi, > > maybe it's too late, but I've just started catching up my read on this forum > after about three weeks of absence... > > Here's my "workaround"*: > > The class "qx.ui.table.model.Simple" uses the wrong class to access the > EVENT_TYPE_META_DATA_CHANGED constant in

Re: [qooxdoo-devel] Table column sorting issue in 0.6.6

2007-07-31 Thread Peter Schneider
Hi, maybe it's too late, but I've just started catching up my read on this forum after about three weeks of absence... Here's my "workaround"*: The class "qx.ui.table.model.Simple" uses the wrong class to access the EVENT_TYPE_META_DATA_CHANGED constant in the setColumnSortable() method. ("qx.ui

Re: [qooxdoo-devel] How to use ContendCellImage Class in ListView ?

2007-07-31 Thread Alex Back
Hi Joachim, Joachim Weber wrote: > Hi, > > I try to fill a qx.ui.listview.ListView with Data-fields containing images. > > The following code works fine: > > var lc = > { > name : { label : "Name", width : 200, type : "text" }, > icon : { width : 28, type : "image", align : "center" } > };

Re: [qooxdoo-devel] TabIndex problem for qx.ui.form.TextField() in FIREFOX browser

2007-07-31 Thread Fabian Jakobs
I think some of the focus issues have been resolved in qooxdoo 0.7.1. Could you please try 0.7.1 and check whether your problem is still there? Best Fabian > Its 0.7 version. > Can you send me the sample code. > > Regards, > Sucharitha > > On 7/30/07, *sucharitha lakshmi* < [EMAIL PROTECTED] > <

Re: [qooxdoo-devel] Trouble using embed.iframe, any other way?

2007-07-31 Thread Fabian Jakobs
johnl schrieb: > Thanks. I replaced my server code with javascript to generate the HTML. > Now I have a few other questions: > > 1) How would I call a qooxdoo object's member function from the > generated html in the HtmlEmbed? > You just need a way to find your object in the global scope of t

Re: [qooxdoo-devel] Appearance issues

2007-07-31 Thread Fabian Jakobs
Jim Hunter schrieb: > One more thing: once I have this code working, how do I apply one of > the appearances or themes to a given object? I use these to color text > (Atoms) on the page. I have no control over the names or the > information in the Apperance, it comes from a database. These used

Re: [qooxdoo-devel] Appearance issues

2007-07-31 Thread Fabian Jakobs
Jim Hunter schrieb: > Great info, thanks. What is the syntax for declaring something like > BOLD or LINE-THROUGH for the font? I used to do it with an additional > line of: this.font.setUnderline(true) or this.font.setItalic(true) > etc. Is it still the same? Where does that line now go? Previou

Re: [qooxdoo-devel] TabIndex problem for qx.ui.form.TextField() in FIREFOX browser

2007-07-31 Thread dperez
I'm also working with 0.7. The textfield already has its tabindex set to 1. This is working for me: frontend/application/demobrowser/source/html/example/Fields_1.html sucharitha lakshmi wrote: > > Its 0.7 version. > Can you send me the sample code. > > Regards, > Sucharitha > > On 7/30/07, su

Re: [qooxdoo-devel] table filtering ???

2007-07-31 Thread dperez
Hi, It can be done playing with the data model. You can subclass the data model (qx.ui.table.model.Basic or qx.ui.table.model.Abstract), to provide this feature. B.ilgin wrote: > > hi all... > > i wanna filtering data in a qooxdoo table... of course this operation be > on > the fly... but ho