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
160160 <label class="k-label k-form-label" style="color:var(--kendo-color-warning)">
161161 FormItem with Template and Form <code>Refresh()</code> - re-render inside the Form</label>
162162 <div class="k-form-field-wrap">
163- <ChilComponent Value="@Employee.Name"
163+ <ChildComponent Value="@Employee.Name"
164164 ValueExpression="@( () => Employee.Name )"
165165 OnChange="@OnChildChange_Refresh" />
166166 </div>
@@ -171,7 +171,7 @@ In such cases, there are a few ways to trigger re-rendering and UI refresh insid
171171 <label class="k-label k-form-label" style="color:var(--kendo-color-tertiary)">
172172 FormItem with Template and <code>StateHasChanged()</code> - re-render inside and outside the Form</label>
173173 <div class="k-form-field-wrap">
174- <ChilComponent Value="@Employee.Name"
174+ <ChildComponent Value="@Employee.Name"
175175 ValueExpression="@( () => Employee.Name )"
176176 OnChange="@OnChildChange_StateHasChanged" />
177177 </div>
@@ -246,7 +246,7 @@ In such cases, there are a few ways to trigger re-rendering and UI refresh insid
246246 }
247247}
248248````
249- ```` ChilComponent .razor
249+ ```` ChildComponent .razor
250250@using System.Linq.Expressions
251251
252252<TelerikTextBox Value="@Value"
You can’t perform that action at this time.
0 commit comments