this.form.sampleDate.element.datepicker("option", "beforeShowDay", this.disabledDates);
protected disabledDates(date: Date) {
//check if date is selectable etc return true if yes false if not
console.log(date);
return true;
}