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
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
Available in the 2017 R2 Release.
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);
}
}
Foreground defined within PropertyGridField's Label Style is not applied in Expression_Dark theme.
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.
Should be resolved with lib version 2014.3.1124.
Possibility to edit only the SelectedPropertyDefinition (like in Visual Studio)