Disable Single Date In P-calendar
I have a calender and I want to disiable a certain date eg 10/7/2018, I am using p-calendar Here is what I have done so far
Solution 1:
You're using [disabledDays]
, where each value represents a day of the week, so any value > 6 is invalid. You want disabledDates
instead, which should be an array of Date
objects.
There should be more info in the documentation that you linked to.
Post a Comment for "Disable Single Date In P-calendar"