Hi all, I've got a Silverlight 4 + RIA + EF4 app here. Using a RadGridView and doing Row validation via;
Validator.TryValidateObject(operation, context, results); this.validationSummary.Errors.Add(new ValidationSummaryItem(err.ErrorMessage, string.Empty, ValidationSummaryItemType.ObjectError, null, context)); That all works fine when the row is submitted it fails to validate and shows the error. If the user then fixes the problem and navigates to another field I want to clear the error (if only until they try to save the row changes by navigating to another row) but I can't seem to find a way to do it. this.validationSummary.Errors.Clear(); doesn't seem to do what I want. I'm calling this on the CellValidating event handler and it just ignores it and the errors keep showing. any suggestions? thanks, Stephen
_______________________________________________ ozsilverlight mailing list [email protected] http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
