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: 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. 
Unplanned
Last Updated: 31 Jul 2025 10:32 by Stenly
The RadPropertyGrid control has a built-in keyboard navigation logic when the RenderMode is set to Flat, however, it does not provide an option to navigate outside of the control to other UI elements. Disabling the built-in navigation provides this behavior partially, however, it does navigate through each property definition.

We could add an option that will allow us to retain the current functionality, and allow the users to navigate outside of the control. 
Unplanned
Last Updated: 26 Aug 2025 14:24 by Martin Ivanov

Pressing the Enter key when a field editor is focused will scroll the vertical scrollbar to the topmost offset. This is reproducible when the properties are grouped. Also, the RenderMode should be set to Flat.

To work this around, change the RenderMode setting to Hierarchical right before the Enter key logic is executed and then return it back to Flat after some time.

private void RadPropertyGrid_PreviewKeyDown(object sender, System.Windows.Input.KeyEventArgs e)
{
    var propertyGrid = (RadPropertyGrid)sender;
    var currentMode = propertyGrid1.RenderMode;
    propertyGrid.RenderMode = RenderMode.Hierarchical;

    Dispatcher.BeginInvoke(new Action(() =>
    {
        propertyGrid.RenderMode = currentMode;
    }));
}

Unplanned
Last Updated: 27 Aug 2025 05:41 by Lorenzo
Introduce support for add/remove instances of child/nested objects.
Declined
Last Updated: 18 Mar 2016 08:07 by ADMIN
ADMIN
Created by: Dimitrina
Comments: 0
Category: PropertyGrid
Type: Feature Request
0
The reason for the flickering is the group needs to be recreated so that its content to be updated.
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

			
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
Completed
Last Updated: 16 Dec 2014 11:03 by ADMIN
ADMIN
Created by: Yoan
Comments: 0
Category: PropertyGrid
Type: Bug Report
0

			
Completed
Last Updated: 13 Jul 2016 12:37 by ADMIN
Completed
Last Updated: 24 Jul 2015 09:57 by ADMIN
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: 03 Sep 2015 12:20 by ADMIN
The fix is available with lib version 2015.2.907.
Completed
Last Updated: 17 Nov 2015 09:15 by ADMIN
Completed
Last Updated: 25 Apr 2016 08:09 by ADMIN
The problem should be resolved with R2 2016. 
Completed
Last Updated: 07 Dec 2015 15:52 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: PropertyGrid
Type: Bug Report
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