How to restrict a dates of datepicker Fuelux???
I have a datepicker with several properties . I need to restrict the first 20 days of January . Is it ( 01-01-2015 Up 20-01-2015 ).
$('#myDatepicker1').datepicker('setCulture', 'es');
$('#myDatepicker1').datepicker('setFormat', 'DD-MM-YYYY');
$('#myDatepicker1').datepicker('setDate', '01-22-2015');
I found the next code, but Dont worked.
$('#myDatepicker1').datepicker(
'setDate', '01-22-2015
restricted: [{from: '01-01-2013', to: '01-01-2014'}]');
In advance thanks for the help you can give me.