Unplanned
Last Updated: 26 Jun 2024 16:03 by Martin Ivanov
A memory leak occurs when RadPropertyGrid instaces are loaded/unloaded multiple times. 

The issue manifests even more if the PropertyGrid contains fields for editing DateType types. 
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: 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: 01 Jul 2024 13:16 by ADMIN
Release 2024.2.701 (Preview)
Exception when changing a non-visible bound property.
Unplanned
Last Updated: 04 Sep 2024 05:14 by Andrea
See if we can improve the TryGetValueByReflection method when using dynamic objects.
Completed
Last Updated: 20 Mar 2018 16:15 by ADMIN
Available in the 2017 R2 Release.
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 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:10 by ADMIN
Completed
Last Updated: 26 Jan 2017 16:14 by ADMIN
Foreground defined within PropertyGridField's Label Style is not applied in Expression_Dark theme.

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: 21 Nov 2014 11:31 by ADMIN
Should be resolved with lib version 2014.3.1124.
Unplanned
Last Updated: 09 Aug 2016 08:49 by ADMIN
ADMIN
Created by: Boris
Comments: 0
Category: PropertyGrid
Type: Feature Request
1

			
Unplanned
Last Updated: 03 Oct 2023 11:04 by Stenly
Improve loading performance when IsGrouped="True" and AutoExpandGroups="True".
Completed
Last Updated: 09 Mar 2023 13:24 by ADMIN
Possibility to edit only the SelectedPropertyDefinition (like in Visual Studio)
Unplanned
Last Updated: 03 Aug 2016 14:12 by ADMIN