Completed
Last Updated: 05 Jul 2013 01:44 by ADMIN
ADMIN
Georgi I. Georgiev
Created on: 05 Jul 2013 01:44
Category: PropertyGrid
Type: Bug Report
0
FIX. RadPropertyGrid - RadPropertyStore.AddRange not notifying for item changes
To reproduce:
List<PropertyStoreItem> propertyStoreItems = new List<PropertyStoreItem>();
propertyStoreItems.Add(modelItem);
RadPropertyStore store = new RadPropertyStore();
store.AddRange(propertyStoreItems);
Workaround:
Iterate the collection and use the Add method
foreach (var item in propertyStoreItems)
{
    store.Add(item);
}
0 comments