This isn't really any trick, its just that I didn't find any documentation of this or any references in searching. There are a few changes proposed for css classes which might make this redundant, but for now this works!
If you want to add attributes for any fields, just include them in the widget constructor. They get written out in key value pairs when the input field is being created. e.g. in the example above, this will come out like:
'<input type="text" name="start_date" id="id_start_date" class="vDateField required" size="10"/>'
1 2 3 4 5 6 7 8 | calendar_widget = forms.widgets.TextInput(attrs={'class':"vDateField required", 'size':10})
class ERSelectForm(forms.Form):
"""
Allow for selection of dates
"""
start_date = forms.DateField(widget=calendar_widget)
end_date = forms.DateField(widget=calendar_widget)
|
More like this
- get_object_or_none by azwdevops 3 months, 2 weeks ago
- Mask sensitive data from logger by agusmakmun 5 months, 1 week ago
- Template tag - list punctuation for a list of items by shapiromatron 1 year, 7 months ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 1 year, 7 months ago
- Serializer factory with Django Rest Framework by julio 2 years, 2 months ago
Comments
Please login first before commenting.