4 Answers, 1 is accepted
0
Hello Mohamed,
You should set the workDayStart and workDayEnd to control the start and end of the businesses day. The footer button can be hidden by setting the footer.command to false.
Regards,
Rosen
Telerik
You should set the workDayStart and workDayEnd to control the start and end of the businesses day. The footer button can be hidden by setting the footer.command to false.
Regards,
Rosen
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0

Sreekar
Top achievements
Rank 1
answered on 04 Dec 2013, 11:42 AM
Hi Rosen,
Can you tell me how we can use footer.command concept in ASP MVC?
Thanks,
Sreekar
Can you tell me how we can use footer.command concept in ASP MVC?
Thanks,
Sreekar
0
Hi Sreekar,
You should be able to hide it by setting the appropriate view's WorkDayCommand option to false.
Unfortunately, this is currently not working but it will be fixed in the next internal build (available to our commercial license holders).
Regards,
Rosen
Telerik
You should be able to hide it by setting the appropriate view's WorkDayCommand option to false.
@(Html.Kendo().Scheduler<
Kendo.Mvc.Examples.Models.Scheduler.TaskViewModel
>()
.Name("scheduler")
.Views(views =>
{
views.WorkWeekView(view=> view.WorkDayCommand(false));
})
.Timezone("Etc/UTC")
.DataSource(d => d
//..
)
)
Unfortunately, this is currently not working but it will be fixed in the next internal build (available to our commercial license holders).
Regards,
Rosen
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0

Sreekar
Top achievements
Rank 1
answered on 04 Dec 2013, 04:41 PM
Hi Rosen,
I have found the appropriate solution for my problem by this code
.Views(views =>
{
views.DayView();
views.WorkWeekView(workWeekView => workWeekView.Selected(true))
.ShowWorkHours()
.Footer(false);
Thank you for the Fast Reply!!
thanks,
Sreekar
I have found the appropriate solution for my problem by this code
.Views(views =>
{
views.DayView();
views.WorkWeekView(workWeekView => workWeekView.Selected(true))
.ShowWorkHours()
.Footer(false);
Thank you for the Fast Reply!!
thanks,
Sreekar