Completed
Last Updated: 11 Feb 2014 16:30 by ADMIN
ADMIN
Dimitar
Created on: 05 Dec 2013 05:53
Category: PropertyGrid
Type: Bug Report
1
FIX. RadPropertyGrid - RadPropertyStore - items are automatically reordered when given item is clicked.
To reproduce:
- Create a property store and add some items to it.
- Start the project and click an item.

Workaround: - 
Add RadSortOrderAttribute to each item:

for (int i = 0; i < propStore.Count; i++)
                {
                    PropertyStoreItem item = propStore[i];
                    item.Attributes.Add(new RadSortOrderAttribute(i));
                }
0 comments