How can I get specific list of date clickable on AngularJs datepicker. I follow the link http://plnkr.co/edit/gGAU0L?p=preview Here weekends are disabled. I think this function can be modified for enable instead of disable.
// Disable weekend selection $scope.disabled = function(date, mode) { return ( mode === 'day' && ( date.getDay() === 0 || date.getDay() === 6 ) ); };
Actually I'm working on a patient care project where patient must have to click dates that are available for doctor. Xperts Plz help me........thanx