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
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
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
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
> 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
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
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
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
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);