Re: [qooxdoo-devel] Error when running generator: Invalid control character u'\n'

2012-02-05 Thread John Spackman
Done http://bugs.qooxdoo.org/show_bug.cgi?id=6098 On 06/02/2012 07:26, "thron7" wrote: >> Hi Thomas >> Line 40 is the last closing brace in the config.json snippet above but the problem is caused by having a double slash in the value for "uri" on the previous line. >>

[qooxdoo-devel] In DateField keypress handler is not activated

2012-02-05 Thread fprijate
Hi In DateField keypress handler is not activated. http://bugzilla.qooxdoo.org/show_bug.cgi?id=6097 Franček -- View this message in context: http://qooxdoo.678.n2.nabble.com/In-DateField-keypress-handler-is-not-activated-tp7257844p7257844.html Sent from the qooxdoo mailing list archive at Na

Re: [qooxdoo-devel] Error when running generator: Invalid control character u'\n'

2012-02-05 Thread thron7
> Hi Thomas > >>>Line 40 is the last closing brace in the config.json snippet above but >>>the >>> problem is caused by having a double slash in the value for "uri" on >>> the >>> previous line. >>> >>> It's typo in my config.json but the error message is rather obscure and >>> took >>> me a while

Re: [qooxdoo-devel] Create password field

2012-02-05 Thread Robert Nimax
Hi, I don´t think it will work without a standard html form. The problem is that it won´t help you to store a password hash by a cookie because I think your backend is awaiting a plain text password because the communication protocol is https. In my opinion there is no other secure way to store

Re: [qooxdoo-devel] Error when running generator: Invalid control character u'\n'

2012-02-05 Thread John Spackman
Hi Thomas >>Line 40 is the last closing brace in the config.json snippet above but >>the >> problem is caused by having a double slash in the value for "uri" on the >> previous line. >> >> It's typo in my config.json but the error message is rather obscure and >> took >> me a while to figure out w

Re: [qooxdoo-devel] Define forms inside TabViews

2012-02-05 Thread Harlan H. Bloom
Thank You to both German and Derrell, that line got it to work! Harlan... - Original Message - From: "Germán Pablo Del Tedesco" To: "Harlan H. Bloom" , "qooxdoo Development" Sent: Sunday, February 5, 2012 6:07:18 PM Subject: Re: [qooxdoo-devel] Define forms inside TabViews Hel

Re: [qooxdoo-devel] Define forms inside TabViews

2012-02-05 Thread Derrell Lipman
On Sun, Feb 5, 2012 at 17:39, Harlan H. Bloom wrote: > qx.Class.define("h4.Twitter", > { > extend : qx.ui.tabview.Page, > > construct : function() > { >this.base(arguments, "Twitter"); > >// hide the window buttons >this.setShowCloseButton(false); > > var layout = new qx.ui.layo

Re: [qooxdoo-devel] Create password field

2012-02-05 Thread slah
in html it's simple: but how to do it with qooxdoo without manually saving/reading cookies. zap wrote > > I think Mozilla's Firefox 10 does this. > -- View this message in context: http://qooxdoo.678.n2.nabble.com/Create-password-field-tp7256951p7257141.html Sent from the qooxdoo mailing l

Re: [qooxdoo-devel] Define forms inside TabViews

2012-02-05 Thread Germán Pablo Del Tedesco
Hello! After "*var layout = new qx.ui.layout.Basic();*" you need to assign the layout to the tab: "*this.setLayout(layout);*". Or, in one line "*this.setLayout(new qx.ui.layout.Basic());*". Regards, Germán. 2012/2/5 Harlan H. Bloom > Hello, > This is continuing on with a different email thre

Re: [qooxdoo-devel] Create password field

2012-02-05 Thread zap
I think Mozilla's Firefox 10 does this. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Create-password-field-tp7256951p7257007.html Sent from the qooxdoo mailing list archive at Nabble.com. -- Try befo

[qooxdoo-devel] Create password field

2012-02-05 Thread slah
Hi, is it possible to create a password field and let the browser ask the user if he wants to save that password or not. I know it can be manually saved by in a cookie but I want it to be managed by browser. regards -- View this message in context: http://qooxdoo.678.n2.nabble.com/Create-passw

[qooxdoo-devel] Define forms inside TabViews

2012-02-05 Thread Harlan H. Bloom
Hello, This is continuing on with a different email thread. I need to create forms inside each of the TabView pages. Here is the relevant section of code that I have so far: qx.Class.define("h4.Twitter", { extend : qx.ui.tabview.Page, construct : function() { this.base(arguments, "Twi

Re: [qooxdoo-devel] DateField Focus

2012-02-05 Thread fprijate
Hi Done. BRGDS Franček -- View this message in context: http://qooxdoo.678.n2.nabble.com/DateField-Focus-tp7256352p7256396.html Sent from the qooxdoo mailing list archive at Nabble.com. -- Try before you buy = See our

Re: [qooxdoo-devel] DateField Focus

2012-02-05 Thread Derrell Lipman
Franček, please submit this as a bug on http://bugzilla.qooxdoo.org so that it doesn't get lost. It's too easy for things like this to get lost when posted only to the mailing list. Thanks! Derrell On Sun, Feb 5, 2012 at 13:26, fprijate wrote: > Hi > > When setting focus by TAB to DateField,

[qooxdoo-devel] DateField Focus

2012-02-05 Thread fprijate
Hi When setting focus by TAB to DateField, we can't input data directly. We have to select it by mouse. Here is solution construct : function() { this.base(arguments); // set the layout var layout = new qx.ui.layout.HBox(); this._setLayout(layout); layout.setAlignY("m