It would be great to be able to customize the scheduler's toolbar, either by specify custom buttons and actions through 'toolbar' option or by providing a custom template.
Fabien, one way to add this is by appending button or other control to the schedulers toolbar. Example $(".k-scheduler-toolbar").find("ul.k-scheduler-tools").append('<li style="background-color: #f5f5f5;"><a role="button" class="k-button exportics" style="margin-left: 10px;">Export to iCalendar</a></li>'); $(".exportics").on("click", function() { console.log('Hello, you clicked exportics-button'); });
Thanks for the suggestion, Fabien. Currently the toolbar supports only pdf command as part of its toolbar, as depicted here: http://docs.telerik.com/kendo-ui/api/javascript/ui/scheduler#configuration-toolbar but we'll have in mind to extend the configuration array to support other commands as well.