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?
↧