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

Changing the display name of Appointment

1 Answer 65 Views
ScheduleView
This is a migrated thread and some comments may be shown as answers.
romulo~
Top achievements
Rank 1
romulo~ asked on 04 Feb 2013, 07:37 PM
Hello Telerik Team,

We're working on a project and we're using the scheduler viewer with a custom appointment.

The issue is that we need to show on the list of appointments other fields than subject.
Something like:

"Subject" - "Client"

"Subject" and "Client" are both filled on the form and and are being saved.
I didn't find any property to bind these values and the templates we tried didn't work.

Is there something we can do or the display name can't be changed? 

1 Answer, 1 is accepted

Sort by
0
romulo~
Top achievements
Rank 1
answered on 05 Feb 2013, 11:52 AM
I just found out what was going wrong with our template.

The bindings were set wrong... 

I based the bindings on other bindings already made, but for this part of the control, some things were not necessary.

<!--This was wrong-->
<TextBlock Text="{Binding Occurence.Appointment.Subject}" />
 
<!--This worked :)-->
<TextBlock Text="{Binding Appointment.Subject}" />

I used the binding above because it was like that in other part of the code. Sadly, it didn't work for what i needed.

Well... I'm kind of new with bindings...

Thanks anyway.
Tags
ScheduleView
Asked by
romulo~
Top achievements
Rank 1
Answers by
romulo~
Top achievements
Rank 1
Share this question
or