Monday, September 1, 2014

Re: How to make a widget with no history?

Many thanks :) That's just what i need.

On Monday, September 1, 2014 8:48:16 PM UTC+4, Collin Anderson wrote:
You need to turn html autocomplete off.

class CommentForm(forms.Form):
    name
= forms.CharField(widget=forms.TextInput(attrs={'autocomplete': 'off'}))

which will generate html like this:

<input id="id_name" name="name" autocomplete="off">

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/7321b763-060d-4a44-9e58-3c0049c884a2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment