Hide Scheduler Toolbar and Footer
Environment
Product | Progress® Kendo UI for Scheduler |
Description
How can I hide the Scheduler toolbar and footer elements?
Solution
You can hide the toolbar and footer elements of the Kendo UI for Angular Scheduler by using custom CSS styles:
.k-scheduler .k-scheduler-toolbar,
.k-scheduler .k-scheduler-footer {
display: none;
}
The following example demonstrates the suggested approach in action.