Lets say my ViewModel has a property in it that is a list of Dates
IList<DateTime> concertDates;
My plan in my cshtml file is to allow the user to select multiple concert dates and when they hit a submit button, retrieve this information in the controller.
I am assuming in order to allow the user to select multiple dates I would add a DatePicker widget to the page and allow the user to select a date from it. When the user selects a date from it, the date will get added to a list in JavaScript. Then somehow this list needs to be converted to JSON and set to the ViewModel..
How would it be possible to bind the IList concertDates ViewModel property?