This question is locked. New answers and comments are not allowed.
Hi,
bound to a GridView we're using objects that implement INotifyDataErrorInfo for validation. We return custom ErrorInfo objects the supports different severities.
I understand that we have to provide custom styles to support the display of warnings in cell editors.
The tricky part:
An editor should not block the UI when only a warning is displayed. I tried to handle the CellValidated event. The Cell.IsValid property of GridViewCellValidatedEventArgs is already true.
I tried to clear the ValidationResult -> nothing helped
bound to a GridView we're using objects that implement INotifyDataErrorInfo for validation. We return custom ErrorInfo objects the supports different severities.
I understand that we have to provide custom styles to support the display of warnings in cell editors.
The tricky part:
An editor should not block the UI when only a warning is displayed. I tried to handle the CellValidated event. The Cell.IsValid property of GridViewCellValidatedEventArgs is already true.
I tried to clear the ValidationResult -> nothing helped
My question: How can I override the ValdidationResult provided by INotifydataErrorInfo in a way that certain errors are ignored? Thanks, Philipp