Hello
I'm binding a IList<BusinessObject> to the GridViewDataColumn through a converter.
Code snippet:
<telerik:GridViewDataColumn
Header="Classes"
Width="15*"
UniqueName="AuthorisationClasses"
DataMemberBinding="{Binding AuthorisationClasses, Converter={StaticResource AuthorisationClassesListConverter}}"
The view gets updated dynamically if I make the AuthorisationClasses an ObservableCollection. I was wondering if I could make the view update dynamically without making it an ObservableCollection. The reason being, AuthorisationClasses is a business entity and all the business entites in our solution are of type List<T>.
Thanks in advance
Regards
Binu
I'm binding a IList<BusinessObject> to the GridViewDataColumn through a converter.
Code snippet:
<telerik:GridViewDataColumn
Header="Classes"
Width="15*"
UniqueName="AuthorisationClasses"
DataMemberBinding="{Binding AuthorisationClasses, Converter={StaticResource AuthorisationClassesListConverter}}"
The view gets updated dynamically if I make the AuthorisationClasses an ObservableCollection. I was wondering if I could make the view update dynamically without making it an ObservableCollection. The reason being, AuthorisationClasses is a business entity and all the business entites in our solution are of type List<T>.
Thanks in advance
Regards
Binu