This is a migrated thread and some comments may be shown as answers.

Hide parts of the Scheduler control

3 Answers 871 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Tyler
Top achievements
Rank 1
Tyler asked on 31 Jan 2014, 12:34 AM
How can I hide everything that is in the header above the calendar of the Scheduler control?  (Today, < >,  datepicker, Day, Week Month, Agenda)

I would also like to hide the footer that has the Show Business Hours.


3 Answers, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 03 Feb 2014, 01:59 PM
Hi Tyler,

You can use

.k-scheduler-toolbar,
.k-scheduler-footer
{
    /* make them invisible */
    display: none;
 
    /* prevent height and paddings from influencing the size calculations */
    height: 0;
    padding: 0;
    overflow: hidden;
}


Regards,
Dimo
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Erik
Top achievements
Rank 1
answered on 20 Apr 2014, 05:40 PM
I have the same question. With this solution, also the 2nd header (the one with the day, week range or month) will be invisible.
I only want to hide the top one (Today, Day, Week Month, Agenda)
0
Erik
Top achievements
Rank 1
answered on 20 Apr 2014, 05:58 PM
Haha, let me answer my own question. Just some CSS:

#scheduler .k-scheduler-toolbar:nth-of-type(1) {
...
Tags
Scheduler
Asked by
Tyler
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Erik
Top achievements
Rank 1
Share this question
or