Skip to content

Commit ca0a4ec

Browse files
authored
docs: typo
1 parent 79bc1a5 commit ca0a4ec

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

knowledge-base/inputs-validation-child-component.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ This component is generic to showcase the concept, it does not have to be if you
4848
@using System.Linq.Expressions
4949
5050
<TelerikComboBox Value="@CBValue" ValueChanged="@( async (T v) => await RaiseValueChanged(v) )" ValueExpression="@CustomValueExpression"
51-
Data="@MyData" TextField="@TextFiedCustom" ValueField="@ValueFiedCustom" Id="@MyId" AllowCustom="@AllowCustom">
51+
Data="@MyData" TextField="@TextFieldCustom" ValueField="@ValueFieldCustom" Id="@MyId" AllowCustom="@AllowCustom">
5252
</TelerikComboBox>
5353
5454
@code {
@@ -61,9 +61,9 @@ This component is generic to showcase the concept, it does not have to be if you
6161
[Parameter]
6262
public IEnumerable<TItem> MyData { get; set; }
6363
[Parameter]
64-
public string TextFiedCustom { get; set; }
64+
public string TextFieldCustom { get; set; }
6565
[Parameter]
66-
public string ValueFiedCustom { get; set; }
66+
public string ValueFieldCustom { get; set; }
6767
[Parameter]
6868
public string MyId { get; set; }
6969
[Parameter]
@@ -95,8 +95,8 @@ This component is generic to showcase the concept, it does not have to be if you
9595
CustomValueExpression="@( () => person.Team )"
9696
MyData="@teams"
9797
MyId="teamCombobox"
98-
TextFiedCustom="MyTextField"
99-
ValueFiedCustom="MyValueField">
98+
TextFieldCustom="MyTextField"
99+
ValueFieldCustom="MyValueField">
100100
</MyCustomComponent>
101101
<div>Current value: @person.Team</div>
102102
<ValidationMessage For="@(() => person.Team)"></ValidationMessage>
@@ -107,8 +107,8 @@ This component is generic to showcase the concept, it does not have to be if you
107107
CustomValueExpression="@( () => person.Role )"
108108
MyData="@roles"
109109
MyId="rolesCombobox"
110-
TextFiedCustom="Text"
111-
ValueFiedCustom="Value"
110+
TextFieldCustom="Text"
111+
ValueFieldCustom="Value"
112112
AllowCustom="true">
113113
</MyCustomComponent>
114114

0 commit comments

Comments
 (0)