I am able to set the value to a certain amount of days past the current day, like so:
$(function () {
$("#PriorityLevelID").on("change", function() {
$("#DueDate").datepicker("setDate", 2);
});
});
But is there a way to exclude weekends? For example, 2 days past Friday would not be Sunday, it would be Tuesday in business days.