MultiSelect DatePicker

1
I would like to implement a datepicker where it is possible to select more than 1 date option. To do this i added the "Javascript with jQuery” snippet with the code below: $(function() { ("${Day}").mobiscroll().datepicker({         controls: ['calendar'], selectMultiple: true, selectMin: 1, selectMax: 3}) }); I didn't get any errors but the function is not working when I select dates in the datepicker. Am I doing something wrong? Or is it not possible to add a multiselect to a datepicker using Javascript snippets?
asked
2 answers
1

try to use bootstrapDatePicker, with below settings 9 AutoClose – No) and OnChange you can get clicked date.

answered
1

Thank you, but unfortunatly this is not what i was looking for.

For as far as I can see, it is only possible to select multiple consecutive days with the bootstrap datepicker.

I am looking for a possibility to select multiple days as shown below.

answered