Hi all,
I need to disable selected date and weekly days as below ss.
I did it in two kendo calendars and i need to this both in one calendar.
Please tell me some solutions to do that.
- <body>
- <div id="example">
- <div class="demo-section k-content" style="text-align: center;">
- <div id="calendar"></div>
- <div id="holidays"></div>
- <p id ="hh"></p>
- </div>
- <script>
- var dates = [
- new Date("1/1/2019"),
- new Date("1/19/2019"),
- ];
- var days = ["mo","we"]
- $("#calendar").kendoCalendar({
- disableDates: dates,
- });
- $("#holidays").kendoCalendar({
-
- disableDates: days,
- });
- </script>
- </div>
- </body>
thank you.
Kasu.