Declined
Last Updated: 14 Mar 2016 12:08 by ADMIN
Created by: Michael
Comments: 1
Category: PropertyGrid
Type: Feature Request
0
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?
Completed
Last Updated: 09 Apr 2014 13:06 by ADMIN
BindingMode is OneWay when there is editor template and PropertySetMode is None

Resolved with LIB version 2014.1.407.
Completed
Last Updated: 16 Nov 2015 07:08 by ADMIN
Completed
Last Updated: 28 Nov 2014 06:37 by ADMIN
ADMIN
Created by: Yordanka
Comments: 2
Category: PropertyGrid
Type: Feature Request
0

			
Unplanned
Last Updated: 03 Aug 2016 14:11 by ADMIN
 Provide a straight-forward option for customers to set their custom tooltip. An example showing how to achieve this now is available at https://github.com/telerik/xaml-sdk/tree/master/PropertyGrid/CustomHyperlinkToolTip
Completed
Last Updated: 07 Dec 2015 15:52 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: PropertyGrid
Type: Bug Report
0

			
Completed
Last Updated: 25 Apr 2016 08:09 by ADMIN
The problem should be resolved with R2 2016. 
Completed
Last Updated: 17 Nov 2015 09:15 by ADMIN
Completed
Last Updated: 03 Sep 2015 12:20 by ADMIN
The fix is available with lib version 2015.2.907.
Completed
Last Updated: 18 Aug 2015 06:03 by ADMIN
ADMIN
Created by: Maya
Comments: 0
Category: PropertyGrid
Type: Bug Report
0
Fixed with LIB version 2015.2.817.
Completed
Last Updated: 13 Aug 2014 11:59 by ADMIN
SearchTextBox is clipped, when SortAndGroupButtonsVisibility property of RadPropertyGrid is set to Collapsed, in Windows8Touch theme
Unplanned
Last Updated: 20 Sep 2024 14:25 by Martin Ivanov
Add a property on the PropertyDefinition or the PropertyGridField object that changes the visibility of the expand/collapse button that is displayed when you have nested properties. The developer should be able to manually define if the button should be visible or not.
Completed
Last Updated: 16 Dec 2014 11:03 by ADMIN
ADMIN
Created by: Yoan
Comments: 0
Category: PropertyGrid
Type: Bug Report
0

			
Declined
Last Updated: 17 Jul 2018 11:41 by ADMIN
The item status is set to Declined as it is already logged in our system: https://feedback.telerik.com/Project/143/Feedback/Details/202982-propertygrid-selectedpropertydefinitions-are-not-cleared-when-radpropertygrid-it.
Completed
Last Updated: 27 Jun 2018 16:09 by Andre
Completed
Last Updated: 13 Jul 2016 12:37 by ADMIN
Completed
Last Updated: 01 Jul 2024 11:22 by ADMIN
Release 2024.2.701 (Preview)

When the Expression_Dark theme is applied to the RadPropertyGrid, selecting an item is hard to read, as the item's foreground is white and the selection state is in a similar color.

To work this around, use the following Style:

<Style TargetType="telerik:PropertyGridField">
    <Style.Triggers>
        <Trigger Property="IsSelected" Value="True">
            <Setter Property="Foreground" Value="Black"/>
        </Trigger>
    </Style.Triggers>
</Style>

 

Completed
Last Updated: 24 Jul 2015 09:57 by ADMIN
Unplanned
Last Updated: 10 Nov 2023 14:15 by Martin Ivanov
Add an event that is raised when the editor's value gets updated and just before the value is updated back to the associated data item when PropertySetMode is Union or Intersection.

Currently, you can use the PropertySetsValidationFunction to intercept this moment, but the function is not invoked only for the currently edited property, but for all other properties in the PropertyGrid and you cannot indicate which one triggered the change.