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

AppointmentTitleFormat in MonthView

2 Answers 166 Views
Scheduler and Reminder
This is a migrated thread and some comments may be shown as answers.
Nadia Sangiovanni
Top achievements
Rank 1
Nadia Sangiovanni asked on 28 Jul 2010, 08:12 PM
Hi Support,

I change the AppointmentTitleFormat of my RadScheduler. It works perfectly for the Day View, Week View and Timeline but unfortunately the Month view Appointment Title is not correct.

How can I change the Appointment Title format in Month View?

Regards

2 Answers, 1 is accepted

Sort by
0
Accepted
Dobry Zranchev
Telerik team
answered on 29 Jul 2010, 06:26 PM
Hello Nadia Sangiovanni,

Thank you for writing us.
 
When in Month view set the AppointmentTitleFormat property of the active Month view:
 
void radScheduler1_ActiveViewChanged(object sender, SchedulerViewChangedEventArgs e)
{
    if (e.NewView.ViewType == SchedulerViewType.Month)
    {
        //default is "{2} {3}"
        this.radScheduler1.GetMonthView().AppointmentTitleFormat = "custom format";
    }
}

For further questions, do not hesitate to contact us.

All the best,
Dobry Zranchev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Nadia Sangiovanni
Top achievements
Rank 1
answered on 29 Jul 2010, 06:32 PM
Thank you very much Dobry Zranchev.



Tags
Scheduler and Reminder
Asked by
Nadia Sangiovanni
Top achievements
Rank 1
Answers by
Dobry Zranchev
Telerik team
Nadia Sangiovanni
Top achievements
Rank 1
Share this question
or