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
- Mask sensitive data from logger by agusmakmun 1 week, 5 days ago
- Template tag - list punctuation for a list of items by shapiromatron 1 year, 2 months ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 1 year, 2 months ago
- Serializer factory with Django Rest Framework by julio 1 year, 9 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 10 months ago
Comments
Please login first before commenting.