Re: turning off autocomplete for textfield ..

2008-07-02 Thread Timo Rantalaiho
On Thu, 03 Jul 2008, Rakesh Sinha wrote:
> on a separate note - how do we turn off autocomplete for a TextField
> in the java code. (other than autocomplete=off, in html).

Probably with an AttributeModifier setting that attribute.

E.g.

  textField.add(new AttributeModifier("autocomplete", true, new
  AbstractReadOnlyModel() { return autoComplete() ? "on" : "off"; }));

Best wishes,
Timo

-- 
Timo Rantalaiho   
Reaktor Innovations Oyhttp://www.ri.fi/ >

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



turning off autocomplete for textfield ..

2008-07-02 Thread Rakesh Sinha
on a separate note - how do we turn off autocomplete for a TextField
in the java code. (other than autocomplete=off, in html).

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]