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

Is minutesPerRow property still available?

1 Answer 66 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Joshua
Top achievements
Rank 1
Joshua asked on 25 Apr 2014, 02:41 PM
I'm writing a small mvc application for time scheduling. We will need the basic unit of time reservation to be 15 mins. I did some searching, it seems that minutesPerRow is exactly property I need. However, when the installation was complete, I can't seem to find the minutesPerRow property  using Visual Studio's intellisense. Is it still available? Or is there some kind of how-to to make it work? Thanks!

1 Answer, 1 is accepted

Sort by
0
Rosen
Telerik team
answered on 28 Apr 2014, 07:53 AM
Hi Joshua,

The MinutesPerRow is property of RadScheduler for ASP.NET AJAX.

In order to control the length of time slots in Scheduler widget of UI for ASP.NET MVC, you will need to use the majorTick and minorTickCount settings. For example:

@(Html.Kendo().Scheduler<EventsViewModel>()
    .Name("scheduler")
    .MajorTick(30)
    .MinorTickCount(2)
     /*..*/
    .DataSource(/*..*/)
)


Regards,
Rosen
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.

 
Tags
Scheduler
Asked by
Joshua
Top achievements
Rank 1
Answers by
Rosen
Telerik team
Share this question
or