Completed
Last Updated: 21 Oct 2014 10:47 by ADMIN
ADMIN
Created by: Maya
Comments: 0
Category: PropertyGrid
Type: Feature Request
1
This feature will be available with Q3 2014. User can specify the criteria used for filtering. All he/she needs to do is to override IsFiltered property of PropertyDefinition and set the his/her logic there.
Completed
Last Updated: 26 Jan 2017 16:14 by ADMIN
Foreground defined within PropertyGridField's Label Style is not applied in Expression_Dark theme.

Unplanned
Last Updated: 03 Aug 2016 14:10 by ADMIN
Unplanned
Last Updated: 03 Aug 2016 14:11 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: PropertyGrid
Type: Feature Request
1

			
Unplanned
Last Updated: 03 Aug 2016 14:12 by ADMIN
Unplanned
Last Updated: 03 Aug 2016 14:11 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: PropertyGrid
Type: Feature Request
1

			
Completed
Last Updated: 05 Jun 2017 12:01 by ADMIN
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
Completed
Last Updated: 21 Aug 2016 10:27 by ADMIN
Completed
Last Updated: 04 Nov 2020 16:33 by ADMIN
Completed
Last Updated: 20 Mar 2018 16:15 by ADMIN
Available in the 2017 R2 Release.
Completed
Last Updated: 12 May 2017 13:00 by ADMIN
Nullable properties with non-matching values are not updated after clearing the entire text of the field(PropertySets).


Available in LIB version: 2017.2.515
Completed
Last Updated: 12 May 2017 12:14 by ADMIN
The editor of nullable properties with non-matching values does not display the default value for this type(null) using PropertySets.


Available in LIB version: 2017.2.515
Completed
Last Updated: 13 Mar 2019 12:12 by ADMIN

If you have a data validation, and there is an invalid field with the red border around it, if you hide this field via the filtering feature or the collapsing its group, the validation red border (and the tooltip) disappears.

To resolve this, you will need to update the ErrorTemplate of the input field (the TextBox). You can do this in the FieldLoaded event handler.

private void RadPropertyGrid_FieldLoaded(object sender, Telerik.Windows.Controls.Data.PropertyGrid.FieldEventArgs e)
{
    if (e.Field.Content is TextBox)
    {
        var editor = (TextBox)e.Field.Content;
        var bindingExpression = BindingOperations.GetBindingExpression(editor, TextBox.TextProperty);
 
        if (bindingExpression.ValidationError != null)
        {
            var errorTemplate = Validation.GetErrorTemplate(editor);
            Validation.SetErrorTemplate(editor, null);
            Validation.SetErrorTemplate(editor, errorTemplate);
        }               
    }           
 

Completed
Last Updated: 19 Mar 2019 07:43 by ADMIN
Nested properties are not loaded when the ComponenetType does not match the DeclarationType. The same setup is correctly presented when using the UI for WinForms' PropertyGrid.
Completed
Last Updated: 24 Apr 2019 06:35 by ADMIN
Release R2 2019
Unplanned
Last Updated: 03 Oct 2023 11:04 by Stenly
Improve loading performance when IsGrouped="True" and AutoExpandGroups="True".
Unplanned
Last Updated: 10 Jan 2024 09:12 by Renato

 Add selected inactive state for PropertyGrid Field.

Completed
Last Updated: 01 Jul 2024 13:16 by ADMIN
Release 2024.2.701 (Preview)
Exception when changing a non-visible bound property.