This question is locked. New answers and comments are not allowed.
I have a problem with the RadGridView when it's bound to a QueryableDomainServiceCollectionView<T> object.
When I have two or more rows, the GridView is showned properly...
But if I only have one (1) result, all the columns are getting superposed...
(see screenshots in attachement)
I used to have it working fine when I was bounding to a CollectionViewSource.Views, but I've found it more usefull to bind against the QDSCV since I just migrated to RIA.
What am I doing wrong?
When I have two or more rows, the GridView is showned properly...
But if I only have one (1) result, all the columns are getting superposed...
(see screenshots in attachement)
I used to have it working fine when I was bounding to a CollectionViewSource.Views, but I've found it more usefull to bind against the QDSCV since I just migrated to RIA.
What am I doing wrong?
<telerik:RadGridView ItemsSource="{Binding ViewData, Mode=TwoWay}" AutoGenerateColumns="False">
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn IsReadOnly="True" DataMemberBinding="{Binding Client.LastName}" Header="Last name" />
<telerik:GridViewDataColumn IsReadOnly="True" DataMemberBinding="{Binding Client.FirstName}" Header="First name" />
</telerik:RadGridView.Columns>
</telerik:RadGridView>
