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

SlotDuration for WeekView

5 Answers 96 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
TT
Top achievements
Rank 1
TT asked on 26 Oct 2012, 03:53 PM
hi,
there is a way to set the slotduration in the weekview? i want 30 minutes slots. it's possible?

5 Answers, 1 is accepted

Sort by
0
Accepted
Plamen
Telerik team
answered on 29 Oct 2012, 06:53 AM
Hi Mattia,

You can set the MinutesPerRow property as it is shown in this on-line demo for example in the Day, Week and MultiDay Views section.

 
hope this will be helpful.

Kind regards,
Plamen
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
TT
Top achievements
Rank 1
answered on 29 Oct 2012, 08:49 AM
it's works, thanks!
0
TT
Top achievements
Rank 1
answered on 17 Jan 2013, 11:24 AM
it's possible to set 15 minutes, like this view

08.00
08.15
08.30
08.45
09.00
09.15
..
..
i tried with a button event

protected void btn15_Click(object sender, EventArgs e)
{
      RadScheduler1.MinutesPerRow = 15;
      RadScheduler1.HoursPanelTimeFormat = "HH:mm";
      RadScheduler1.Rebind();
}

but it doesn't works

0
Accepted
Plamen
Telerik team
answered on 22 Jan 2013, 07:02 AM
Hi Mattia,

 
Here is the code that worked properly at my side:

protected void RadButton1_Click(object sender, EventArgs e)
   {
       RadScheduler1.MinutesPerRow = 15;
       RadScheduler1.TimeLabelRowSpan = 1;
       RadScheduler1.HoursPanelTimeFormat = "HH:mm";
       RadScheduler1.Rebind();
   }

Hope this will be helpful.

Kind regards,
Plamen
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
TT
Top achievements
Rank 1
answered on 22 Jan 2013, 08:17 AM
Thanks, it's works
Tags
Scheduler
Asked by
TT
Top achievements
Rank 1
Answers by
Plamen
Telerik team
TT
Top achievements
Rank 1
Share this question
or