4 Answers, 1 is accepted
0
Hi David,
I am afraid that this scenario is currently not supported out of the box. We are working on a time line view which should be pretty close to what you are aiming for, however it will be introduced with the 2014 Q3 release at the earliest. I would recommend periodically checking the roadmap for updates on that matter.
Regards,
Alexander Popov
Telerik
I am afraid that this scenario is currently not supported out of the box. We are working on a time line view which should be pretty close to what you are aiming for, however it will be introduced with the 2014 Q3 release at the earliest. I would recommend periodically checking the roadmap for updates on that matter.
Regards,
Alexander Popov
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.
0
David
Top achievements
Rank 1
answered on 09 Sep 2014, 01:02 PM
Hi,
Thank you for your answer.
In fact, I found a workaround.
I hid the footer and toolbar via CSS:
.k-scheduler-footer {
display: none !important;
}
.k-scheduler-toolbar {
display: none !important;
}
I hid the all day slot:
.AllDaySlot(false)
And I changed the date template to show only the day label
.DateHeaderTemplate("<strong>#=kendo.toString(date, 'dddd')#</strong>")
I still need to change the week end coloration.
Regards,
David
}
Thank you for your answer.
In fact, I found a workaround.
I hid the footer and toolbar via CSS:
.k-scheduler-footer {
display: none !important;
}
.k-scheduler-toolbar {
display: none !important;
}
I hid the all day slot:
.AllDaySlot(false)
And I changed the date template to show only the day label
.DateHeaderTemplate("<strong>#=kendo.toString(date, 'dddd')#</strong>")
I still need to change the week end coloration.
Regards,
David
}
0
Accepted
This could be done by applying a custom background-color to the "k-nonwork-hour" class.
Regards,
Alexander Popov
Telerik
Regards,
Alexander Popov
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.
0
David
Top achievements
Rank 1
answered on 11 Sep 2014, 06:20 PM
Thank you for your help