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

Changing appointment display text

1 Answer 121 Views
Scheduler and Reminder
This is a migrated thread and some comments may be shown as answers.
Ozcan Oksuz
Top achievements
Rank 1
Ozcan Oksuz asked on 16 Feb 2011, 03:16 PM
Hi,

The current display format for an appointment on scheduler is  appointment time and appointment subject,
eg:  10:00 am - 10:30 am  test

How can we make it display what we want to display for a custom appointment? 
eg: patientName

Thanks,
Burhan Eyimaya

1 Answer, 1 is accepted

Sort by
0
Accepted
Richard Slade
Top achievements
Rank 2
answered on 17 Feb 2011, 12:17 AM
Hello,

What is it you'd like to change? for exmaple, it renders the appointment subject to the text property of the appointment element. This could be changed to show a different text (whilst not changing the appointment subject) by using the AppointmentFormatting event.

private void radScheduler1_AppointmentFormatting(object sender, SchedulerAppointmentEventArgs e)
{
    e.AppointmentElement.Text = "Some text ";
}

hope that helps
Richard
Tags
Scheduler and Reminder
Asked by
Ozcan Oksuz
Top achievements
Rank 1
Answers by
Richard Slade
Top achievements
Rank 2
Share this question
or