You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aspnetcore/blazor/forms-validation.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ In the preceding example:
54
54
55
55
* The form validates user input in the `name` field using the validation defined in the `ExampleModel` type. The model is created in the component's `@code` block and held in a private field (`exampleModel`). The field is assigned to the `Model` attribute of the `<EditForm>` element.
56
56
* The `InputText` component's `@bind-Value` binds:
57
-
* The model property (`exampleModel.Name`) to the `InputText` component's `Value` property.
57
+
* The model property (`exampleModel.Name`) to the `InputText` component's `Value` property. For more information on property binding, see <xref:blazor/data-binding#parent-to-child-binding-with-component-parameters>.
58
58
* A change event delegate to the `InputText` component's `ValueChanged` property.
59
59
* The `DataAnnotationsValidator` component attaches validation support using data annotations.
60
60
* The `ValidationSummary` component summarizes validation messages.
0 commit comments