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: 15 Mar 2023 11:52 by Markus
Release R1 2023 SP1

Currently, the control allows you to search only for fields that have been expanded already. If a parent field was never expanded, the search won't look for its children.

Allow searching in not expanded fields.

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: 09 Mar 2020 08:14 by ADMIN
Release LIB 2020.1.309 (03/09/2020)
Behind the scene we need to update any changes made in the property grid, in a SQL Server database, too. With our current implementation we fire a database request if a property is edited in the property grid. This is fine if only one entity has been selected. If more than one entity has been selected (ProperytSetMode “Intersection”) a database request is fired for each entity if a property is edited. This is not very performant for us.
We need an event like “EditEnded” to figure out when the PropertySetViewModel has updated all ViewModels. Then we are able to updated the necessary changes in the database in a single call. 
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: 23 Nov 2017 09:40 by ADMIN
Unplanned
Last Updated: 03 Aug 2017 15:57 by ADMIN
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: 20 Mar 2018 16:15 by ADMIN
Available in the 2017 R2 Release.
Completed
Last Updated: 18 Apr 2017 07:40 by ADMIN
Modify the current implementation so that the TypeConverter is applied as well when its GetStandardValues method is not overriden.

Available in LIB version 2017.1.417 , it will be also available in the R2 2017 Release. 
Unplanned
Last Updated: 15 Mar 2017 12:00 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: PropertyGrid
Type: Feature Request
1
By the time being, a custom DataTemplate can be applied only for the EditorTemplate. When the EditMode is Single, a plain TextBlock is used for a readonly PropertyDefinition. With the Default EditMode, if the EditorTemplate is set, it will be displayed, but the user needs to stick to the default behavior provided by the ReadOnlyEditorState property (grayed out and disabled element for its Disabled value, and enabled interaction for the ReadOnly one). Provide an option to directly set a ReadOnlyTemplate for both EditModes.
Completed
Last Updated: 18 Apr 2017 07:30 by ADMIN
If an EditorAttribute's EditorStyle is set to None and a custom usercontrol is used as an editor, the DataContext of the usercontrol is not respected.


Available in LIB version 2017.1.417 , it will be also available in the R2 2017 Release. 
Completed
Last Updated: 17 Oct 2016 11:15 by ADMIN
The Exception is thrown as if the RenderMode is not set to Flat. If the GroupStyleSelector is defined before the RenderMode, the issue is not reproduced.
Completed
Last Updated: 18 Oct 2016 11:03 by ADMIN
ADMIN
Created by: Ivan Ivanov
Comments: 0
Category: PropertyGrid
Type: Bug Report
0