Hello,
I am currently working on a project where I combine a JqxCalendar with knockout but I ran into a problem.
My html looks like this:
<div data-bind="jqxCalendar: { width: '100%', height: 220, firstDayOfWeek: 1, selectionMode: 'range', culture: 'nl-NL', specialDates: testDate }"></div>
Where testDate is a javascript variable:
var testDate = new Date(2015, 10, 17);
When I load the webpage my calendar does not have special dates. According to the API specialDates is a property.
Can anyone tell me what is wrong?
Thanks in advance.