Re: [qooxdoo-devel] Access textfield value

2010-02-02 Thread thron7
On 02/02/2010 08:46 AM, devmanfromm...@gmx.de wrote: > >> Your container didn't know a member called "username"! >> I guess you use a grid layout so it's easy to access the child widgets >> of the container because you know what you want and where they are. Try >> the following in your handler f

Re: [qooxdoo-devel] Access textfield value

2010-02-01 Thread devmanfromm...@gmx.de
> Your container didn't know a member called "username"! > I guess you use a grid layout so it's easy to access the child widgets > of the container because you know what you want and where they are. Try > the following in your handler function: > > var username = this.__container.getCellWidget(0,

Re: [qooxdoo-devel] Access textfield value

2010-02-01 Thread Fink, Andreas
> Hello, > i add in a methof of a class some textfields > > /* Text fields */ > var username = new qx.ui.form.TextField(); > var password = new qx.ui.form.PasswordField(); > > this.__container.add(username.set({ > al

Re: [qooxdoo-devel] Access textfield value

2010-02-01 Thread Fritz Zaucker
On Mon, 1 Feb 2010, devmanfromm...@gmx.de wrote: > Id do > > I read this all > > http://qooxdoo.org/documentation/1.0/widget/textfield > http://demo.qooxdoo.org/1.0.x/apiviewer/#qx.ui.form.TextField Switch on "Inherited" in the toolbar and then use the browser search/find function and search for

Re: [qooxdoo-devel] Access textfield value

2010-02-01 Thread devmanfromm...@gmx.de
Id do I read this all http://qooxdoo.org/documentation/1.0/widget/textfield http://demo.qooxdoo.org/1.0.x/apiviewer/#qx.ui.form.TextField http://qooxdoo.org/documentation/1.0/ui_widgets > Read the manual. > > -- > Fritz Zaucker > Oetiker+Partner AG > Aarweg 15 > CH-4600 Olten > +41 62 755 9903 >

Re: [qooxdoo-devel] Access textfield value

2010-01-31 Thread Derrell Lipman
On Sun, Jan 31, 2010 at 14:49, Stefan Meyer wrote: > Hello, > i add in a methof of a class some textfields > >/* Text fields */ >var username = new qx.ui.form.TextField(); >var password = new qx.ui.form.PasswordField(); > >this.__co

Re: [qooxdoo-devel] Access textfield value

2010-01-31 Thread Fritz Zaucker
Read the manual. -- Fritz Zaucker Oetiker+Partner AG Aarweg 15 CH-4600 Olten +41 62 755 9903 On 31.01.2010, at 20:49, Stefan Meyer wrote: > Hello, > i add in a methof of a class some textfields > >/* Text fields */ >var username = new qx.ui.form.TextField(); >

[qooxdoo-devel] Access textfield value

2010-01-31 Thread Stefan Meyer
Hello, i add in a methof of a class some textfields /* Text fields */ var username = new qx.ui.form.TextField(); var password = new qx.ui.form.PasswordField(); this.__container.add(username.set({ allow