I ran into this problem on firefox 3.0 using wicket 1.3.5.

Firefox wanted autocomplete="off", instead of autocomplete="false" which is
what AutoCompleteTextField was using.  W3schools doesn't specify a value for
this attribute, so I'm assuming it's not all ironed out yet.

I fixed it with the following, but haven't tested on ie.

myAutocompleteTextField.add(new AttributeModifier("autocomplete", new
Model("off")));

-
Loren


On Thu, Apr 17, 2008 at 2:13 PM, Ryan Sonnek <ryan.son...@gmail.com> wrote:

> Glad you liked it...That's actually my blog.  =)
>
> you may want to check out the updated version of the autocomplete wicket
> components...
> http://jroller.com/wireframe/entry/from_components_to_behaviors
>
>
> On Thu, Apr 17, 2008 at 10:59 AM, ak <ansa...@yahoo.com> wrote:
>
> >
> > Thank you Ryan and Gerolf.
> >
> > I also came across this useful post for anyone reading this thread ...
> > http://www.jroller.com/wireframe/entry/wicket_autocomplete_text_field
> >
> > -Andy
> > --
> > View this message in context:
> >
> http://www.nabble.com/Override-IE-AutoComplete-with-Wicket%27s-AutoCompleteTextField-tp16733561p16745438.html
> > Sent from the Wicket - User mailing list archive at Nabble.com.
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
>

Reply via email to