5 Answers, 1 is accepted
0
Accepted
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.
Plamen
the Telerik team
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.
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
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
Hi Mattia,
Hope this will be helpful.
Kind regards,
Plamen
the Telerik team
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