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

2008-03-26 Thread Hugh Gibson
> If I have a Map like the following > var validationStatusMap = {"field1":false, "field2":false, > "field3":false, "field4":true}; > > Is there a way to search true using an index like alogrithem without > iterating entire Map? Not that I know of. > Sometimes I build a big map. I am afraid th

Re: [qooxdoo-devel] error building trunk demobrowser

2008-03-26 Thread Sebastian Werner
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. Sebastian Am 27.03.2008 um 01:28 schrieb Derrell Lipman: > I decided to try building the demobrowser from trunk. The command > "make dis

[qooxdoo-devel] QxTransformer 0.3 alpha1 is out

2008-03-26 Thread Siarhei Barysiuk
Hello, We are happy to announce that QxTransformer 0.3 alpha1 is out. QxTransformer is a framework that converts transparent XML description of the graphical user interface (GUI) to JavaScript code based on the qooxdoo framework. What's new: - completely redesigned site We would like to present

Re: [qooxdoo-devel] How to allow numbers only on Text Field

2008-03-26 Thread 405hp
My code isn't straight qx as I use delphi for php but this works for me with a text field function LabeledEdit4JSKeyDown(event) { var event = event || window.event; var e = event; var unicode=e.getCharCode()? e.getCharCode() : e.getKeyCode() ; if

[qooxdoo-devel] error building trunk demobrowser

2008-03-26 Thread Derrell Lipman
I decided to try building the demobrowser from trunk. The command "make distclean ; make source" yields this error: . . . INITIALIZATION >>

Re: [qooxdoo-devel] How to allow numbers only on Text Field

2008-03-26 Thread Fink, Andreas
Hi Kanugula, it seams to me that the spinner widget (qx.ui.form.Spinner) could do a better job for your needs: http://demo.qooxdoo.org/current/demobrowser/#example~Spinner_1.html Regards, Andreas <>- Check out the new

[qooxdoo-devel] How to allow numbers only on Text Field

2008-03-26 Thread kanugula
Hi, I am trying to block the user entering non-number data on a number field. var yearsField = new qx.ui.form.TextField(); yearsField .setLiveUpdate(true); var validator_int = qx.ui.form.TextField.createRegExpValidator(new RegExp('^(0|[1-9][0-9]*)$')); yearsField .setValidator(validator_int); ye

Re: [qooxdoo-devel] Using a validators with textFields

2008-03-26 Thread kanugula
Thank you. This reply helped lot to Validate Float. Nick Glencross-2 wrote: > > Hi David, > > johnl wrote: >> Does anyone have an example of how to use a validator with textfield? >> Specifically I'm interested in validating floating point numbers. > > The validation system is quite neat an

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

2008-03-26 Thread Leander Hanwald
Hi I'm not sure if I understand you right, but: why don't you save the name of the "true" field while creating the Map? As I understand you the map is created in another part of the code / on another system, why doesn't this part/system save the information of the needed field together with the

Re: [qooxdoo-devel] APIviewer has problems with interface hierarchy

2008-03-26 Thread [EMAIL PROTECTED]
Hi Werner, I opened bug #810 and attached a test application. http://bugzilla.qooxdoo.org/show_bug.cgi?id=810 Best Fabio Sebastian Werner wrote: > Hi! > > Can you please open a bug report at http://bugzilla.qooxdoo.org. > > Thank you. > > Sebastian > > > [EMAIL PROTECTED] schrieb: >> Hi,

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

2008-03-26 Thread Fabian Jakobs
kanugula schrieb: > If I have a Map like the following > var validationStatusMap = {"field1":false, "field2":false, "field3":false, > "field4":true}; > > Is there a way to search true using an index like alogrithem without > iterating entire Map? > > Sometimes I build a big map. I am afraid that ea

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

2008-03-26 Thread kanugula
If I have a Map like the following var validationStatusMap = {"field1":false, "field2":false, "field3":false, "field4":true}; Is there a way to search true using an index like alogrithem without iterating entire Map? Sometimes I build a big map. I am afraid that each map iteration on each field

Re: [qooxdoo-devel] 0.8 API for widget bounds and parent/child relation

2008-03-26 Thread Rüdiger Herrmann
Hi Fabian, sorry for the delayed answer, we have been away for EclipseCon. Please see my comments below. Cheers, Rüdiger Fabian Jakobs wrote: > Rüdiger Herrmann schrieb: >> Hi Fabian, >> >> I found one more thing that I really like about 0.8. The separation >> in a layer that handles browser-sp

Re: [qooxdoo-devel] changing layout doesn't refresh width=100%

2008-03-26 Thread Hugh Gibson
See http://bugzilla.qooxdoo.org/show_bug.cgi?id=763 and http://www.nabble.com/Re%3A-Should-shared-instances-be-used-for-internal-q ooxdoo-operat-p14885872.html Hugh - Check out the new SourceForge.net Marketplace. It's the be

[qooxdoo-devel] changing layout doesn't refresh width=100%

2008-03-26 Thread Tobias Koller (GERMO GmbH)
Hi, I have a table(width= 100%). It is stored in an canvaslayout (width 300px). When I move the table from the canvaslayout to another layout at runtime(which has a width of 500px) The table is still 300px because it was embedded in the 300px canvaslayout. It will not be refreshed after swit