This question is locked. New answers and comments are not allowed.
I have my AppointmentTemplate as
If Subject does not have value, I want the Location data to be shown. Week and Day View shows it correctly, but Month View have empty entries. Please refer the attached screenshot. How can I change this behavior?
<DataTemplate x:Key="AppointmentItemTemplate"> <StackPanel> <TextBlock telerik:DragDropManager.AllowDrag="False" TextWrapping="Wrap" Text="{Binding Subject}" TextTrimming="WordEllipsis"/> <TextBlock telerik:DragDropManager.AllowDrag="False" TextWrapping="Wrap" Text="{Binding Appointment.Location}" TextTrimming="WordEllipsis"/> <TextBlock telerik:DragDropManager.AllowDrag="False" TextWrapping="Wrap" Text="{Binding AuthorName}" TextTrimming="WordEllipsis"/> </StackPanel> </DataTemplate>If Subject does not have value, I want the Location data to be shown. Week and Day View shows it correctly, but Month View have empty entries. Please refer the attached screenshot. How can I change this behavior?