$("#mycalendar").kendoCalendar({ value: today, dates: events, change: onChangeCalendar,
month: {
// template for dates in month view
content:
'# if ($.inArray(+data.date, data.dates) != -1) { #' +
'<div class="' +
"exhibition" +
'">#= data.value #</div>' +
'# } else { #' +
'#= data.value #' +
'# } #'
},
footer: false
});I have my Calendar with onChange function and i'd like to create onSelect function.
At my onChange i create a kendo window to show a message.
This should also happen at onSelect.
-Click element.
-Go to onchange
-Open the window
-Close window
-I click on the same item and it does not open (onSelect is not implemented)
Calendar don't have select event.
How can i do this?
