SelectedPropertyDefinitions are not cleared when RadPropertyGrid.Item being changed.
Currently the only option is to call the Expand/Collapse groups API, which takes noticable time to execute.
Currently, when RenderMode Flat is enabled, RadPropertyGridd uses a custom navigation behavior. The default framework navigation is available only when RenderMode is Hierarchical.
Hello, my question is about RadPropertyGrid. The case if following. I use objects implementing ICustomTypeDescriptor, call it ClassTypeDescriptor, as items source for property grid and properties are derived from PropertyDescriptor class. It is important to have these objects grouped and sorted. That's why I pass System.ComponentModel.DataAnnotations.DisplayAttribute with GroupName and Order values set to the constructor of PropertyDescriptor. If I bind Item property of property grid direct to ClassTypeDescriptor, everything works like a charm, properties get grouped and sorted. But if I bind Item property to the List or any other collection of ClassTypeDescriptor, independently from the count of elements in it, grouping is getting lost and sorting is not applied also. I attach the demo solution to this report and hope for the quick answer. P.S.: I've tried the same case but with "normal" object with properties. And grouping and sorting work even if I bind a collection to Item property of PropertyGrid Thank you in advance Alexander Sherekin
Add an additional EditorAttribute's constructor which takes the type's name as a string.
Available in the 2017 R1 Release (2017.1.117).
Expose a boolean property that states whether to save the expanded state of the group and property definitions and the filter descriptor.
The fix will be available with lib version 2016.1.328
Currently, if you change the value of a property in the object bound to the property grid control, the control's UI won't reflect this change.
RadPropertyGrid exposes PropertySetsValidationFunc property that validates the new value of a property. However, it is executed after the property is set. PropertyGrid should validate them before the setter is invoked. Available in LIB version: 2017.2.605
I understand from http://docs.telerik.com/devtools/wpf/controls/radpropertygrid/features/validation, that there are essentially two methods to implement data validation in a RadPropertyGrid. Note that I would like to use the "property set" feature of RadPropertyGrid whereby I can display/edit properties from multiple items simultaneously (http://docs.telerik.com/devtools/wpf/controls/radpropertygrid/features/defining-propertysets). I was only able to get the second validation technique (data annotations) to work when using property sets. Should the first technique (IDataErrorInfo) work with the property sets feature? Towards the end of the discussion here http://www.telerik.com/forums/validation-bfd78b274562, this topic is touched on, but it is not clear if it was ever resolved. If it is not possible to use the IDataErrorInfo technique with property sets, I suggest the documentation at http://docs.telerik.com/devtools/wpf/controls/radpropertygrid/features/validation be updated to reflect this fact. Separately, is there a target date for when this feature may be added? If it is possible to use the IDataErrorInfo technique with property sets, would someone kindly post a sample solution?