Regards,
I want show in the scheduler some days colored and some days with normal colors. I try this without results:
var
scheduler = $(
"#scheduler"
).data(
"kendoScheduler"
);
scheduler._showCalendar();
$(
'.k-animation-container'
).css(
'display'
,
'none'
);
scheduler.popup.close();
var
calendar = scheduler.calendar;
calendar.month = {
content: $(
'<script id="cell-template" type="text/x-kendo-template"><div class="#= data.value < 10 ? "exhibition" : "party" #"> #= data.value # </div> </script>'
).html() };
And
calendar.month = { content:
'# if ($.inArray(+data.date, data.dates) != -1) { #'
+
'<div class="'
+
'# if (days.indexOf(data.value) > -1) { #'
+
'calendar bold-day" # } #'
+
'"> #= data.value #</div>'
+
'# } else { #'
+
'#= data.value #'
+
'# } #'
};
Thanks for the help.