From 77335c1e4f84495e2e57342c90f2c8604bf852e1 Mon Sep 17 00:00:00 2001 From: Prathappr <102800982+Prathappr@users.noreply.github.com> Date: Wed, 23 Oct 2024 19:40:59 +0530 Subject: [PATCH] Update column-validation.md the field name name provided the ValidationRquested method --- blazor/datagrid/column-validation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blazor/datagrid/column-validation.md b/blazor/datagrid/column-validation.md index c3bbab87c4..93a9bb199e 100644 --- a/blazor/datagrid/column-validation.md +++ b/blazor/datagrid/column-validation.md @@ -289,7 +289,7 @@ In the below code example, the following things have been done. private void ValidateRequested(object editContext, ValidationRequestedEventArgs validationEventArgs) { - HandleValidation(CurrentEditContext.Field("Field")); + HandleValidation(CurrentEditContext.Field("Freight")); } }