Re: [qooxdoo-devel] SelectionAPI woes (part 1)

2009-06-18 Thread Martin Wittemann
Hello Mike, first of all thanks for your detailed explanation. I do have good news for you, you can switch back to the combobox because it still supports read only. Well not the combobox itself but the textfield and you can access that textfield shown here: box.getChildControl("textfield").se

Re: [qooxdoo-devel] Closing last page in a TabView causes "too much recursion" - using trunk

2009-06-18 Thread Christian Schmidt
Hi Steven, could you please open a bug report for this issue and copy your code snipped as example in it. Thanks, Chris Mr. Hericus schrieb: > Hi All, > > Just updated to the latest trunk, and am having a problem with the tab > view. Specifically, closing the last page in a tabview is causing

Re: [qooxdoo-devel] Why are 'Request' objects not reusable?

2009-06-18 Thread Jim Hunter
Well yes and no. The Request object is itself not a singleton, BUT... when you issue the send() method it does a getInstance() of a RequestQueue which is a singleton. So technically the Request is not a singleton but it is a single use object /** * Schedule this request for transport to se

[qooxdoo-devel] Databinding: TypeError: target["reset" + qx.lang.String.firstUp(lastProperty)] is not a function

2009-06-18 Thread panyasan
Hi, this is a question for Martin. Assume you have an object with a property "model" which contains an object created by the json Marshaller, which contains a property "values" containing an qx.data.Array with values. Shouldn't the following should be possible, given that "this" is the object, a

[qooxdoo-devel] Closing last page in a TabView causes "too much recursion" - using trunk

2009-06-18 Thread Mr. Hericus
Hi All, Just updated to the latest trunk, and am having a problem with the tab view. Specifically, closing the last page in a tabview is causing the error "too much recursion". I've tried this with the Playground application, and it confirms the scenario. Paste the following into Playground

[qooxdoo-devel] Generator question: Unknown clas referenced

2009-06-18 Thread panyasan
Hello, in one of the classes in the qcl project, I am dynamically creating new classes: obj = new qcl.access[typeLower][typeUpper](name); When I run "generator.py source" it will complain >>> Resolving dependencies... - ! Unknown class referenced: qcl The warning will not have any negati

Re: [qooxdoo-devel] RPC Server: JsonRpcError()

2009-06-18 Thread Derrell Lipman
On Thu, Jun 18, 2009 at 4:00 PM, panyasan wrote: > > Ok, I see what the problem is. The codebase I used to write the OO-Style > server was the PHP4-version of Derrell's server script, which he had > updated > in the meantime to PHP5 only. I am still aiming for PHP4 compatibility, > since there ar

Re: [qooxdoo-devel] RPC Server: JsonRpcError()

2009-06-18 Thread panyasan
Derrell Lipman wrote: > > Ah, yes. It appears that the new (trunk) version of the PHP backend has > broken the interface to JsonRpcError. I'm cc:ing Christian so he can > hopefully get that fixed. (Christian, if you need those extra parameters > in > your implementation, you can probably just mo

Re: [qooxdoo-devel] RPC Server: JsonRpcError()

2009-06-18 Thread Derrell Lipman
On Thu, Jun 18, 2009 at 2:59 PM, panyasan wrote: > > > But seriously, of course this is a bug that needs to be fixed. It would be > great, Derrell, if you could help by running your test suite and pointing > out other errors like this. I have only recently switched to PHP5 that is > why some PHP5

Re: [qooxdoo-devel] RPC Server: JsonRpcError()

2009-06-18 Thread panyasan
While I am at it, would anyone object if I rename the "impl" folder which holds the service classes to "class"? Seems more intuitive to me, I was never so comfortable with "impl" - it looks funny from a German language perspective :-) Christian -- View this message in context: http://www.nabbl

Re: [qooxdoo-devel] RPC Server: JsonRpcError()

2009-06-18 Thread panyasan
Hi, I wasn't aware anyone but me was using the trunk version of the PHP JsonRpc server, so this is good news ;-) But seriously, of course this is a bug that needs to be fixed. It would be great, Derrell, if you could help by running your test suite and pointing out other errors like this. I have

Re: [qooxdoo-devel] Bug 1502: Possible solution?

2009-06-18 Thread Andreas Ecker
Hi Bryan, thanks for the proposed patch. Would you please add it to the bug report as well? > Link for reference: http://bugzilla.qooxdoo.org/show_bug.cgi?id=1502 THX, Andreas -- Crystal Reports - New Free Runtime

Re: [qooxdoo-devel] SelectionAPI woes (part 1)

2009-06-18 Thread mshillin
Gene Amtower wrote: > > Mike, > > I have to wonder if the problem is because the Qooxdoo "SelectBox" is > like an HTML single-height select box, while the Qooxdoo "List" is like > an HTML select box displaying multiple lines. In HTML, a LIst is a > display text layout object, not a select bo

Re: [qooxdoo-devel] RPC Server: JsonRpcError()

2009-06-18 Thread Derrell Lipman
On Thu, Jun 18, 2009 at 9:15 AM, Michael Ochs wrote: > Hi, > > I'm currently working on the basics of a quite big RPC server. I'm > using the qooxdoo rpc server for php. In the test class it says you > can call > throw new JsonRpcError(ERRORCODE, ERRORMESSAGE); > from everywhere in your script. >

Re: [qooxdoo-devel] SelectionAPI woes (part 1)

2009-06-18 Thread mshillin
Martin, I guess my problem arises because the I was originally using the ComboBox which has (or did have) the behavior I want. But in 0.8.x I can no longer set a ComboBox to "readOnly", so I had to switch to a SelectBox. To tell the truth - it would be much easier for me if ComboBox still su

[qooxdoo-devel] RPC Server: JsonRpcError()

2009-06-18 Thread Michael Ochs
Hi, I'm currently working on the basics of a quite big RPC server. I'm using the qooxdoo rpc server for php. In the test class it says you can call throw new JsonRpcError(ERRORCODE, ERRORMESSAGE); from everywhere in your script. But when I try this (and even when I run the test service) it sa

[qooxdoo-devel] Bug 1502: Possible solution?

2009-06-18 Thread Bryan Coutch
Link for reference: http://bugzilla.qooxdoo.org/show_bug.cgi?id=1502 I recently got back to looking at this bug, and I have a fix that is working for me, but I'd like feedback on the correctness of the fix from those more knowledgeable than I. qx.event.handler.EventHandler: (added code highlig

Re: [qooxdoo-devel] SelectionAPI woes (part 1)

2009-06-18 Thread Gene Amtower
Mike, I have to wonder if the problem is because the Qooxdoo "SelectBox" is like an HTML single-height select box, while the Qooxdoo "List" is like an HTML select box displaying multiple lines. In HTML, a LIst is a display text layout object, not a select box object. This might confuse develope

Re: [qooxdoo-devel] Why are 'Request' objects not reusable?

2009-06-18 Thread Matthew Gregory
I am quite sure that only being able to use a request object once is a limitation of most browsers. Also Jim I think you have got your terminolgy confused, Request objects aren't singletons. A singleton means you can only have one instance of that of object at any one time and you usually creat

Re: [qooxdoo-devel] How to add to real-life examples?

2009-06-18 Thread Christian Schmidt
Hi Marcel, everybody can create his own wiki account to write articles. To create a own account click the register link [1]. After registration you can add your application to the real-life examples. Cheers, Chris [1] http://qooxdoo.org/start?do=login&; Marcel Ruff schrieb: > Hi, > > how can

Re: [qooxdoo-devel] How to add to real-life examples?

2009-06-18 Thread Andreas Ecker
Hi Marcel! > how can I add our web application to the qooxdoo real-life examples? The entire homepage is a wiki (i.e. Docuwiki). As for changing any other page, you just need to login: use the "Login" link in the green column to the right. Of course, you need to register once. After that you're r

Re: [qooxdoo-devel] SelectionAPI woes (part 1)

2009-06-18 Thread Martin Wittemann
Hello Mike, 1. The SelectBox has the selection Model "one" which means that always one item has to be selected. This is like in HTML and is how I would suppose it to be. I can't imagine having nothing selected because I dont know how to visualize it to the user. If you want an "empty" sele