Hi all,
While using the RadTab controller, I found the following error message in debug output window
System.Windows.Data Error: 4 : Cannot find source for binding with reference 'ElementName=DropDownButtonElement'. BindingExpression:Path=IsChecked; DataItem=null; target element is 'DropDownMenu' (Name='DropDownMenuElement'); target property is 'IsOpen' (type 'Boolean')
Please try creating a new project and drag and drop the RadTabControl into the main form and execute. In my case, the VS2010 debug output will display the above error
I am using Q1 2010 SP2 of Rad Ctrl set on VS2010 Ultimate.
This does not hamper the performance of the controller, just the error message in the debug view.
Can any one tell me whether I am doing something wrong or whether this is a bug ?
Thanks ,
Chintana

Is it possible to have a different DisplayContent that is detached from the member on the GroupDescriptor object for the RadGrid?
Scenario: EscalationID is a guid and is set as the member. However, to make the UI user friendly. I need to change the grouping "Header" to a custom text or a different member.

<DataTemplate x:Key="busyTemplate"> <StackPanel Orientation="Vertical"> <Label Content="Synchronizing EliteLive.sdf with the remote database."/> <TextBlock Text="{Binding SyncStatus}" TextWrapping="Wrap"/> </StackPanel> </DataTemplate><telerik:RadBusyIndicator x:Name="busyIndicator" Grid.Row="0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" IsBusy="True" IsIndeterminate="True" ProgressValue="{Binding PercentageComplete}" BusyContentTemplate="{StaticResource busyTemplate}" > </telerik:RadBusyIndicator>