This question is locked. New answers and comments are not allowed.
Hi,
I am intrerested in opinions about what kind of collection is best to use with controls like RadDataForm, RadTreeListView, RadGridView...
Usually we have a setup that we use RadDataForm together with another "list" control (RadGridVew, RadTreeListView), that both point to same source. Here we allow users to do batch CRUD operations. Seems that ObservableCollection has issues with Commiting the edits, since calling CommitEdit on RadDataForm will commit only the current record. PagedCollectionView is able to handle this, since it implements IEditableCollectionView.
So, how do you handle this and what type of collections do you use in this scenario? Data is retrieved using EF and Ria Services.
I am intrerested in opinions about what kind of collection is best to use with controls like RadDataForm, RadTreeListView, RadGridView...
Usually we have a setup that we use RadDataForm together with another "list" control (RadGridVew, RadTreeListView), that both point to same source. Here we allow users to do batch CRUD operations. Seems that ObservableCollection has issues with Commiting the edits, since calling CommitEdit on RadDataForm will commit only the current record. PagedCollectionView is able to handle this, since it implements IEditableCollectionView.
So, how do you handle this and what type of collections do you use in this scenario? Data is retrieved using EF and Ria Services.