Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
XamDateTimeEditor
posted

Is there a way to enable /disable specific dates on a  XamDateTime editor control. This functionality seems to be available in the XamMonthCalendar control and I am able to do this to achieve disabled dates.

For Each itm In datelist

Dim range As CalendarDateRange = New CalendarDateRange(Convert.ToDateTime(itm.Value))

igCalendar.DisabledDates.Add(range)

Next

Or is there a way I can port this functionality from the XamMonthCalendar to the XamDateTimeEditor