File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
components/form/formitems Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ In such cases, there are a few ways to trigger re-rendering and UI refresh insid
160
160
<label class="k-label k-form-label" style="color:var(--kendo-color-warning)">
161
161
FormItem with Template and Form <code>Refresh()</code> - re-render inside the Form</label>
162
162
<div class="k-form-field-wrap">
163
- <ChilComponent Value="@Employee.Name"
163
+ <ChildComponent Value="@Employee.Name"
164
164
ValueExpression="@( () => Employee.Name )"
165
165
OnChange="@OnChildChange_Refresh" />
166
166
</div>
@@ -171,7 +171,7 @@ In such cases, there are a few ways to trigger re-rendering and UI refresh insid
171
171
<label class="k-label k-form-label" style="color:var(--kendo-color-tertiary)">
172
172
FormItem with Template and <code>StateHasChanged()</code> - re-render inside and outside the Form</label>
173
173
<div class="k-form-field-wrap">
174
- <ChilComponent Value="@Employee.Name"
174
+ <ChildComponent Value="@Employee.Name"
175
175
ValueExpression="@( () => Employee.Name )"
176
176
OnChange="@OnChildChange_StateHasChanged" />
177
177
</div>
@@ -246,7 +246,7 @@ In such cases, there are a few ways to trigger re-rendering and UI refresh insid
246
246
}
247
247
}
248
248
````
249
- ```` ChilComponent .razor
249
+ ```` ChildComponent .razor
250
250
@using System.Linq.Expressions
251
251
252
252
<TelerikTextBox Value="@Value"
You can’t perform that action at this time.
0 commit comments