Looking at this Kendo Calendar dojo example (docs) we can select multiple dates by using the below configuration.
$(document).ready(function() {
// create Calendar from div HTML element
$("#calendar").kendoCalendar({
selectable: "multiple",
weekNumber: true,
disableDates: ["we", "sa"]
});
});
I want to use the same functions with the Angular Component described here, but I can't find the configuration for this in de docs. Am I overlooking something or is this not possible? If it is not possible, my question is why not?
PS: I am using this Angular Component in an ionic 2 app.