Re: [qooxdoo-devel] autocomplete behavior of form elements

2007-11-28 Thread Fabian Jakobs
westor schrieb: > Well, I tried this, may be that's not the right way? > > field.setHtmlProperty("autocomplete", "On"); > field.setHtmlProperty("name", "email"); > > It's not working. In Firebug I see, that _htmlProperties (autocomplete and > name) are set. > But there is also _inputElement with au

Re: [qooxdoo-devel] autocomplete behavior of form elements

2007-11-27 Thread Leander Hanwald
Hi, yes I think you need to set this to the input element itselfs. Greetings, Leander westor schrieb: > Well, I tried this, may be that's not the right way? > > field.setHtmlProperty("autocomplete", "On"); > field.setHtmlProperty("name", "email"); > > It's not working. In Firebug I see, that _

Re: [qooxdoo-devel] autocomplete behavior of form elements

2007-11-27 Thread westor
Well, I tried this, may be that's not the right way? field.setHtmlProperty("autocomplete", "On"); field.setHtmlProperty("name", "email"); It's not working. In Firebug I see, that _htmlProperties (autocomplete and name) are set. But there is also _inputElement with autocomplete set to "off" - may

Re: [qooxdoo-devel] autocomplete behavior of form elements

2007-11-26 Thread Leander Hanwald
Kick me if I'm wrong, but I think that the hinting is activated by the fieldname (attribute "name") which is now set by default for an qooxdoo textfield. I hadn't tested it, because I hate this function for most textfields in browser, but try to set the name attribute and look what happens. westor

Re: [qooxdoo-devel] autocomplete behavior of form elements

2007-11-26 Thread westor
Good hint, but it's not working for me :-( frederic wrote: > > Hi, > have you tried something like : > elt.setHtmlAttribute("autocomplete", "on") or > elt.setHtmlProperty("autocomplete", "on") > > > > westor wrote: >> >> Normal behavior for html forms in actual browsers is, that text fields

Re: [qooxdoo-devel] autocomplete behavior of form elements

2007-11-26 Thread frederic
Hi, have you tried something like : elt.setHtmlAttribute("autocomplete", "on") or elt.setHtmlProperty("autocomplete", "on") westor wrote: > > Normal behavior for html forms in actual browsers is, that text fields are > suggesting last entered values. Is there a supported way in qooxdoo for > d

[qooxdoo-devel] autocomplete behavior of form elements

2007-11-26 Thread westor
Normal behavior for html forms in actual browsers is, that text fields are suggesting last entered values. Is there a supported way in qooxdoo for doing this? If it is not, are there any ideas to implement this with small effort? -- View this message in context: http://www.nabble.com/autocomple