This question is locked. New answers and comments are not allowed.
I have a GridView that is bound to a ModelView property that is an ObservableCollection of a fairly simple business object. However, when the binding occurs, it appears that all the rows are selected. I have other similar GridViews in my application that work perfectly well. I am not sure why this does not display properly.
Below is the GridView definition:
Below is the GridView definition:
<telerik:RadGridViewx:Name="radGridView"CanUserFreezeColumns="False"AutoGenerateColumns="False"IsReadOnly="True"ShowGroupPanel="False"Height="287"ItemsSource="{Binding Path=UserItems}"><telerik:RadGridView.Columns><telerik:GridViewDataColumnHeader="Name"DataMemberBinding="{Binding UserName}"IsGroupable="False"IsFilterable="False"/><telerik:GridViewDataColumnWidth="*"Header="Address"DataMemberBinding="{Binding Email}"IsSortable="False"IsFilterable="False"/></telerik:RadGridView.Columns></telerik:RadGridView>
I've also attached a screen-shot of what the gridView looks like.
Can anyone provide any insight into what would cause the GridView to behave like this?
Thanks,
Glenn