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: 24 Apr 2019 06:35 by ADMIN
Release R2 2019
In Development
Last Updated: 07 Jun 2024 13:35 by ADMIN
Exception when changing a non-visible bound property.
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: 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: 26 Jan 2017 16:14 by ADMIN
Foreground defined within PropertyGridField's Label Style is not applied in Expression_Dark theme.

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.
Unplanned
Last Updated: 03 Aug 2016 14:10 by ADMIN
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.
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 Oct 2023 11:04 by Stenly
Improve loading performance when IsGrouped="True" and AutoExpandGroups="True".
Completed
Last Updated: 04 Nov 2020 16:33 by ADMIN
Unplanned
Last Updated: 10 Jan 2024 09:12 by Renato

 Add selected inactive state for PropertyGrid Field.

Completed
Last Updated: 13 Jul 2016 12:37 by ADMIN
Completed
Last Updated: 17 Nov 2015 09:15 by ADMIN