@@ -48,7 +48,7 @@ This component is generic to showcase the concept, it does not have to be if you
48
48
@using System.Linq.Expressions
49
49
50
50
<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">
52
52
</TelerikComboBox>
53
53
54
54
@code {
@@ -61,9 +61,9 @@ This component is generic to showcase the concept, it does not have to be if you
61
61
[Parameter]
62
62
public IEnumerable<TItem> MyData { get; set; }
63
63
[Parameter]
64
- public string TextFiedCustom { get; set; }
64
+ public string TextFieldCustom { get; set; }
65
65
[Parameter]
66
- public string ValueFiedCustom { get; set; }
66
+ public string ValueFieldCustom { get; set; }
67
67
[Parameter]
68
68
public string MyId { get; set; }
69
69
[Parameter]
@@ -95,8 +95,8 @@ This component is generic to showcase the concept, it does not have to be if you
95
95
CustomValueExpression="@( () => person.Team )"
96
96
MyData="@teams"
97
97
MyId="teamCombobox"
98
- TextFiedCustom ="MyTextField"
99
- ValueFiedCustom ="MyValueField">
98
+ TextFieldCustom ="MyTextField"
99
+ ValueFieldCustom ="MyValueField">
100
100
</MyCustomComponent>
101
101
<div>Current value: @person.Team</div>
102
102
<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
107
107
CustomValueExpression="@( () => person.Role )"
108
108
MyData="@roles"
109
109
MyId="rolesCombobox"
110
- TextFiedCustom ="Text"
111
- ValueFiedCustom ="Value"
110
+ TextFieldCustom ="Text"
111
+ ValueFieldCustom ="Value"
112
112
AllowCustom="true">
113
113
</MyCustomComponent>
114
114
0 commit comments