You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Options are not working inside the widget. I have the following in my ModelForm. class IronForm(forms.ModelForm): class Meta: model = Iron fields = ... widgets = {'out_of_service_date': DateTimePicker(options={'format': 'YYYY-MM-DD', 'pickTime': False, 'showClear':True, 'showTodayButton': True}), ...}
When I click on the widget, the calendar does not show the 'showClear' button or the 'showTodayButton' button. Any help will be greatly appreciated.