GDPR_erased
Top achievements
Rank 1
GDPR_erased
asked on 10 Apr 2014, 04:42 PM
is there any way to hide the date "row" such as "Sat 4/12" in the Day view in the Scheduler?
4 Answers, 1 is accepted
0
Hello Jonathan,
You can hide the specific rows manually in the dataBound event handler. Check this Kendo Dojo demo, which shows how to accomplish this.
Regards,
Georgi Krustev
Telerik
You can hide the specific rows manually in the dataBound event handler. Check this Kendo Dojo demo, which shows how to accomplish this.
Regards,
Georgi Krustev
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
GDPR_erased
Top achievements
Rank 1
answered on 11 Apr 2014, 04:36 PM
Thanks for the reply, but this is not what we're asking for.
That code hides the first row which in our case in the resource row where we're showing Locations.
We need to hide the second row underneath where there is date on each cell and has a class of “k- today”.
On another note, how do we hide “x” button on time slot without turning editable off (We need it ON because we need to display a an event summary popup on dbl click) altogether. We need this for monthly view of calendar for which we are using a separate instance of kendo UI scheduler so we do not want a generic class change as it will impact the regular scheduler.
That code hides the first row which in our case in the resource row where we're showing Locations.
We need to hide the second row underneath where there is date on each cell and has a class of “k- today”.
On another note, how do we hide “x” button on time slot without turning editable off (We need it ON because we need to display a an event summary popup on dbl click) altogether. We need this for monthly view of calendar for which we are using a separate instance of kendo UI scheduler so we do not want a generic class change as it will impact the regular scheduler.
0
Hello again Jonathan,
When Scheduler is grouped its rendering will change. That is why you will need to use a different selector to hide particular elements. Please note that this is a custom functionality, which is not supported out-of-the-box and you will need to take care of its implementation and future maintenance.
With regards to your second question, you can disable destroy functionality for particular view.
Check the updated Kendo Dojo demo, which shows how to implement both requirements.
Regards,
Georgi Krustev
Telerik
When Scheduler is grouped its rendering will change. That is why you will need to use a different selector to hide particular elements. Please note that this is a custom functionality, which is not supported out-of-the-box and you will need to take care of its implementation and future maintenance.
With regards to your second question, you can disable destroy functionality for particular view.
Check the updated Kendo Dojo demo, which shows how to implement both requirements.
Regards,
Georgi Krustev
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
GDPR_erased
Top achievements
Rank 1
answered on 14 Apr 2014, 05:37 PM
Wow, this worked great. Thanks so much for the assistance.