In Development
Last Updated: 07 Jun 2024 13:35 by ADMIN
Exception when changing a non-visible bound property.
In Development
Last Updated: 11 Jun 2024 08:35 by ADMIN

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>

 

Unplanned
Last Updated: 10 Jan 2024 09:12 by Renato

 Add selected inactive state for PropertyGrid Field.

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.
Unplanned
Last Updated: 03 Oct 2023 11:04 by Stenly
Improve loading performance when IsGrouped="True" and AutoExpandGroups="True".
Completed
Last Updated: 27 Jun 2023 11:25 by ADMIN
Release LIB 2023.1.703 (3 Jul 2023)
When a PropertyDefinition with binding to an attached property is added to the PropertyDefinitions collection, the created editor is not bound correctly. 
Completed
Last Updated: 15 Feb 2022 16:31 by ADMIN
Release R1 2022 SP1
The following exception is thrown when changing the value of specific properties.
InvalidCastException: 'Object must implement IConvertible.'

This happens if the bound property is of a base type and the provided value is of a type that inherits the base type. For example, if you bind to a property of type Brush and you assign a value of type SolidColorBrush.
Completed
Last Updated: 05 Dec 2021 16:21 by ADMIN
Release LIB 2021.3.1206 (6 Dec 2021)

When a RadPropertyGrid instance is placed inside a RadBusyIndicator, the StyleManager cannot apply the styles correctly and it causes an InvalidOperationException at runtime.

Workaround: Use the NoXaml version of the assemblies with the needed themes.

Unplanned
Last Updated: 14 Jul 2020 06:52 by ADMIN
Currently the AutomationID of the PropertyGridField is set to "{0}_FieldEditor", where {0} is the DisplayName of the property definition. We can introduce an option to prevent this.
Unplanned
Last Updated: 30 Oct 2019 15:42 by ADMIN

An non edit mode is enabled in the control when the EditMode is set to Single. In this case, only one field can enter edit mode and the rest are read only. 

Currently, there is no API that allows you to customize the content (that shows the property value) of the read only fields.

Add an API that allows you to customize the read only content. Similar to the EditorTemplate of the PropertyDefinition.

 
Completed
Last Updated: 22 Jul 2019 10:44 by ADMIN
Release LIB 2019.2.722 (07/22/2019)
Expose API to control window's location when using Editor attribute with the EditorStyle.Modal
Completed
Last Updated: 16 Apr 2019 12:53 by ADMIN
Release LIB 2019.1.422 (04/22/2019)
When the PropertyDefinition of the AutoGeneratingPropertyDefinitionEventArgs is set for a nested property definition, it is not respected. 
Completed
Last Updated: 24 Apr 2019 06:35 by ADMIN
Release R2 2019
Completed
Last Updated: 26 May 2022 08:04 by ADMIN
Release LIB 2022.2.530 (30 May 2022)
Created by: dj
Comments: 0
Category: PropertyGrid
Type: Bug Report
3
 
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
1 2 3 4 5