Re: [qooxdoo-devel] New Snippet: Asynchronous (Non-Blocking) User Interaction

2008-03-27 Thread cboulanger
I added another convenience method to the snipped which constructs a form for quick data input. http://qooxdoo.org/documentation/0.7/snippets/asynchronous_user_interaction But Sebastian is right, a class like this is hard to maintain, this should be split in separate classes. A mixin could pro

[qooxdoo-devel] missing_destructors

2008-03-27 Thread Tobias Koller (GERMO GmbH)
Hi, I have a big problem with my app. When I call the destructor of qx.core.Object.dispose(); on runtime (just to see which object will never disposed) I get the attached errors/warnings (see attached txt-file). Some of them are my mistake but I guess many of them aren't ;) I never used

Re: [qooxdoo-devel] How to convert Array to Map literal when passing to RPC Jav

2008-03-27 Thread Derrell Lipman
On Thu, Mar 27, 2008 at 10:34 AM, kanugula <[EMAIL PROTECTED]> wrote: > > I have a form with some fields. Some are required and some are not. > > I created a map of the Filed Validation Status with {"fieldName", > "true/false"}. True means data is entered on the field. False means nothing > ent

Re: [qooxdoo-devel] dispatchEvent firing but evt.getValue() not getting data

2008-03-27 Thread kanugula
You are right. I have a special case of inter dependency of some field references. Because of that, I have to turn on validation when the page is completely loaded. I thought dispatchig event at the end will solve this. Instead, setting the values for form fields will also achieve this. I remove

Re: [qooxdoo-devel] Context Menu key has no action under Windows

2008-03-27 Thread Hugh Gibson
> You might try something like this to force focus where you want it > to be: > > contextmenu.addEventListener("appear", function() { > table.setFocus(); }, this); The trouble with that is that when the menu appears, the up and down arrow will work in the table rather than in the menu. I c

Re: [qooxdoo-devel] How to convert Array to Map literal when passing to RPC Jav

2008-03-27 Thread kanugula
I have a form with some fields. Some are required and some are not. I created a map of the Filed Validation Status with {"fieldName", "true/false"}. True means data is entered on the field. False means nothing entered. At present, I am not interested in content validation whether it is number/str

Re: [qooxdoo-devel] Context Menu key has no action under Windows

2008-03-27 Thread Derrell Lipman
On Thu, 27 Mar 2008 11:25 + (GMT Standard Time), Hugh Gibson <[EMAIL PROTECTED]> wrote: > I have an issue in that after showing the menu, focus isn't set correctly > back to the table. Pressing tab activates the button to show the header > menu, and then shift-tab re-activates the table. I h

Re: [qooxdoo-devel] error building trunk demobrowser

2008-03-27 Thread Derrell Lipman
On Thu, Mar 27, 2008 at 2:04 AM, Sebastian Werner <[EMAIL PROTECTED]> wrote: > Please delete the folder source/class/demo. This should help. > > This folder is not in SVN and was created dynamically through the old > generator/make system. Thanks, that did it. I wonder if it might be appropriat

Re: [qooxdoo-devel] Context Menu key has no action under Windows

2008-03-27 Thread Hugh Gibson
Thanks for the hint. I added a listener for onkeyup and listened for event.getKeyIdentifier() == "Apps", then generated the event. A bit more was needed in the event: var oElement = this.getElement(); var oPosition = qx.bom.element.Location.get(oElement);