Hi JQX Team,
Can someone please take a look at this code and see why is it allowing to move Forward to February 2014 & March 2014 months when MaxDate is set at 2014 Jan 31st?
I have just modified your setMaxDate jsfiddle demo .
$(“#jqxCalendar”).jqxCalendar({
width: ‘200px’,
height: ‘200px’,
theme: ‘energyblue’
});
$(‘#jqxCalendar ‘).jqxCalendar(‘setMinDate’, new Date(2014, 0, 1));
$(‘#jqxCalendar ‘).jqxCalendar(‘setMaxDate’, new Date(2014, 0, 31));
$(‘#jqxCalendar ‘).jqxCalendar(‘setDate’, new Date(2014, 0, 15));
thank you.