Completed
Last Updated: 12 May 2023 15:27 by ADMIN
Release R2.2023-Increment.3(7.June.2023)
Fabien
Created on: 09 Feb 2016 09:04
Category: Scheduler
Type: Feature Request
8
Scheduler : customize toolbar
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.
2 comments
Anders
Posted on: 14 Apr 2017 18:43
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');
});
ADMIN
Telerik Admin
Posted on: 09 Feb 2016 10:00
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.