0
I have a system with a datepicker, and I want some dates to be automatically disabled. These dates should automatically populate the array that disables the dates. (Today it is manual as shows the function below)
var disableddates = ["10-12-2015", "11-20-2015", "12-21-2015", "12-22-2015", "12-23-2015", "12-24-2015", "12-25-2015", "12-28-2015", "12-29-2015", "12-30-2015", "12-31-2015", "1-1-2016"];
I have a SQL Server precedent that brings a list of all these dates. How to call it before calling the datepicker by disabling these dates?
What platform (language) are you developing? You can request dates by AJAX.
– Leandro Amorim
The system was developed in ASP Classico. I have no idea how to make this request with AJAX. Could you give me some tips please?
– mmooser