django-bootstrap-datepicker-plus
django-bootstrap-datepicker-plus copied to clipboard
Bootstrap3/Bootstrap4/Bootstrap5 DatePickerInput, TimePickerInput, DateTimePickerInput, MonthPickerInput, YearPickerInput with date-range-picker functionality for django >= 2.0
Listener added for a synchronous 'DOMNodeInserted' DOM Mutation Event. This event type is deprecated (https://w3c.github.io/uievents/#legacy-event-types) and work is underway to remove it from browsers. Usage of this event listener will...
I have implemented a custom MultiWidget input like this: ``` from django import forms from bootstrap_datepicker_plus.widgets import DatePickerInput, TimePickerInput class PickDateTimeWidget(forms.SplitDateTimeWidget): def __init__(self, attrs=None): widgets = [DatePickerInput, TimePickerInput] forms.MultiWidget.__init__(self, widgets,...
**To Reproduce** Using options [https://getdatepicker.com/4/Options/#daysofweekdisabled](https://getdatepicker.com/4/Options/#daysofweekdisabled) for example: ```python picker = DatePickerInput(options={'daysOfWeekDisabled': [0,6]}) picker.config.to_attr_value() ``` will show: ``` UserWarning: Pydantic serializer warnings: Expected `Union[bool, int, str, dict[str, str]]` but got `list`...
**Describe the bug** Changing values in the datetime picker input emits `change` event, but not the `dp.change`. I recently updated our project's django-bootstrap-datepicker-plus version from 4.0.0 to 5.0.5. After that,...
## Purpose This PR addresses an issue where the picker icons are not showing in the latest version (5.0.5) of `django-bootstrap-datepicker-plus` when using a custom `MultiWidget` input with `DatePickerInput` and...