My experience with Django and Date-Picker-Plus has been mostly smooth, but I've encountered an issue where the date picker does not display a value until clicked on. Despite scouring through the documentation, I haven't come across anyone else facing this particular problem. As someone who is not well-versed in JavaScript, this aspect of troubleshooting feels unfamiliar to me.
Here are the resources I've consulted so far:
class Meta:
model = Jobs_DB
fields = ['date_scheduled']
widgets = {
'date_scheduled': DatePickerInput(
options={
"format": "MM-DD-YYYY", # moment date-time format
"showClose": True,
"showClear": True,
"showTodayButton": True,
'defaultDate': True,
},
),
}