Re: [qooxdoo-devel] odd rendering behavior of child controls

2010-05-26 Thread Jim Hunter
Nice example! I stuggled with this for such a time and eventually went back to creating all my "child" control in the construct method by doing them inline, not using the better way of _createChildControl which looks much nicer and I think gives better control over what is going on. I guess I can

Re: [qooxdoo-devel] odd rendering behavior of child controls

2010-05-26 Thread Greg Beaver
On 5/26/10 1:57 AM, MartinWittemann wrote: > Hi Greg, > > > Greg Beaver wrote: > >> All in all, a very frustrating experience. I've been working on this >> for 3 days now with absolutely no luck getting it to display a stupid >> selectbox or list properly :). >> >> > I can imagine that thi

Re: [qooxdoo-devel] Rpc synchronous call fails but asynchronous call works

2010-05-26 Thread Derrell Lipman
On Wed, May 26, 2010 at 13:43, mckwil wrote: > > Hi, > > I'm running into a very strange problem where synchronous Rpc always return > null, but if I use a asynchronous call, it works. > > My rpc call is very simple. > > this.rpc = new qx.io.remote.Rpc("http://localhost:8080/myapp/.qxrpc";, > "my

[qooxdoo-devel] Rpc synchronous call fails but asynchronous call works

2010-05-26 Thread mckwil
Hi, I'm running into a very strange problem where synchronous Rpc always return null, but if I use a asynchronous call, it works. My rpc call is very simple. this.rpc = new qx.io.remote.Rpc("http://localhost:8080/myapp/.qxrpc";, "myapp.rpc.services.SimpleService"); this.rpc.setCrossDomain(tru

Re: [qooxdoo-devel] partLoader.require partName as parameter?

2010-05-26 Thread Christian Hagendorn
Hi, > Is it possible to use the parts without explicit partNames in code? > I have a list and a tartget container which I would like to fill up with > content depending on the selected list item. > Every listItem has a model { part : "partName" }. > I would like to achive that after list selection

Re: [qooxdoo-devel] How to consume key event so that IE does notprocess them?

2010-05-26 Thread Dave Baggett
Reviving this old thread. I believe this is fixable. I have updated Bug 1049 with some new info about this. Dave -- View this message in context: http://qooxdoo.678.n2.nabble.com/How-to-consume-key-event-so-that-IE-does-not-process-them-tp3349169p5104342.html Sent from the qooxdoo mailing list

Re: [qooxdoo-devel] Remote table columns from backend problem.

2010-05-26 Thread panyasan
Hi Yan, might it hae something to do with all the alert() statements you're using? Is it the same behavior if you use this.debug() instead, which doesn't block the javascript thread? Other than that, why are your eval'ing your result from the rpc service method? you can simple return an indexed

[qooxdoo-devel] partLoader.require partName as parameter?

2010-05-26 Thread danovics
Is it possible to use the parts without explicit partNames in code? I have a list and a tartget container which I would like to fill up with content depending on the selected list item. Every listItem has a model { part : "partName" }. I would like to achive that after list selection has been chan

Re: [qooxdoo-devel] ANNC: qooxlisp 0.1: qooxdoo + Common Lisp

2010-05-26 Thread thron7
> Is there a procedure for that, or do I just need to create an account > and then edit the page? Yes, that's it. T. -- ___ qooxdoo-devel mailing list qooxdoo-devel@lists.sou

Re: [qooxdoo-devel] odd rendering behavior of child controls

2010-05-26 Thread MartinWittemann
Hi Greg, Greg Beaver wrote: > > All in all, a very frustrating experience. I've been working on this > for 3 days now with absolutely no luck getting it to display a stupid > selectbox or list properly :). > I can imagine that this is frustrating. What kind of documentation could we add to ge