Skip to content

Commit fd70af5

Browse files
committed
Line edits3
1 parent 86befce commit fd70af5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

learn-pr/aspnetcore/blazor-improve-how-forms-work/4-take-advantage-power-blazor-forms.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@ quiz:
2323
explanation: "This event executes when EditForm fields are submitted with invalid content"
2424
- content: "OnFailedValidation"
2525
isCorrect: false
26-
explanation: "This sounds like a good name for an event, but is not correct"
26+
explanation: "This sounds like a good name for an event, but isn't correct"
2727
- content: "OnFailedSubmit"
2828
isCorrect: false
29-
explanation: "'Failed' is not part of the event name that is raised"
29+
explanation: "'Failed' isn't part of the event name that is raised"
3030
- content: "An EditForm has the following features EXCEPT:"
3131
choices:
3232
- content: "Data Binding"
3333
isCorrect: false
3434
explanation: "The EditForm can be associated with an object and then acts like a view of the object for data entry purposes"
3535
- content: "Data cleansing"
3636
isCorrect: true
37-
explanation: "While you can edit the content of an EditForm, it does not perform data cleansing operations on its own"
37+
explanation: "While you can edit the content of an EditForm, it doesn't perform data cleansing operations on its own"
3838
- content: "Validation"
3939
isCorrect: false
4040
explanation: "An EditForm extensive and extensible validation capabilities"

learn-pr/aspnetcore/blazor-improve-how-forms-work/includes/4-take-advantage-power-blazor-forms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ The following image shows an example of the page running:
8585

8686
The HTML `<form>` element supports the `<input>` element to enable the user to enter data. The `<input>` has a `type` property that specifies the type of the input and how it should be displayed; as a number, a text box, a radio button, a check box, a button, and so on.
8787

88-
Blazor has its own set of components designed to work specifically with the `<EditForm>` element and support data binding among other features. The following table lists these components. When Blazor renders a page containing these components, they're converted to the corresponding HTML `<input>` elements listed in the table. Some of the Blazor components are generic; the Blazor runtime ascertains the type paramater depending on the type of the data bound to the element:
88+
Blazor has its own set of components designed to work specifically with the `<EditForm>` element and support data binding among other features. The following table lists these components. When Blazor renders a page containing these components, they're converted to the corresponding HTML `<input>` elements listed in the table. Some of the Blazor components are generic; the Blazor runtime ascertains the type parameter depending on the type of the data bound to the element:
8989

9090
| Input component | Rendered as (HTML) |
9191
|---------------------------|------------------------------|

0 commit comments

Comments
 (0)