Hello, can i somehow make disable dates in DateTimeInput? I know that i can set minDate or maxDate:
For example i would like to set DateTimeInput like this:
1) The dates before 01/01/2013 would be disabled – $('#jqxDateTimeInput ').jqxDateTimeInput('setMinDate', new Date(2013, 1, 1));
2) The dates after 31/12/2014 would be disabled – $('#jqxDateTimeInput ').jqxDateTimeInput('setMaxDate', new Date(2014, 12, 31));
3) In between there would be disabled values from 01/04/2013 to 15/04/2013
4) And another disabled range from 12/06/2013 to 23/08/2013
I know how to do 1) and 2) points, but is possible to do it together with points 3) and 4) ???
Thank you very much
Daniel