This is a strange one. I am loading appointments dynamically for multiple resources via a button on the page. I can click the button over and over and everything loads fine. However, if I add a GroupHeaderContentTemplate something weird happens. This first time everything loads fine again. On subsequent loads the data appears to in the correct place however the group headers all appear to be shifted with the first one missing and last one duplicated. I’ve attached some screenshots demonstrating this behavior.
Here is the very basic template I am using.
<telerik:RadScheduleView.GroupHeaderContentTemplate>
<DataTemplate>
<TextBlock Text="{Binding Path=.}" ToolTipService.ToolTip="{Binding Path=.}" Width="100" />
</DataTemplate>
</telerik:RadScheduleView.GroupHeaderContentTemplate>