Skip to content

Commit 0d1074d

Browse files
authored
Remove obsolete Label parameters (#210)
* Remove obsolete Label parameters * Update grid/custom-popup-form/Shared/CustomEditForm.razor * Update grid/custom-popup-form/Shared/CustomEditForm.razor
1 parent 7070ec5 commit 0d1074d

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

grid/custom-popup-form/Shared/CustomEditForm.razor

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,16 @@
1919
<DataAnnotationsValidator />
2020
<div class="form-row">
2121
<div class="col">
22-
<TelerikTextBox @bind-Value="@SelectedEmployee.Name" Label="First Name"></TelerikTextBox>
22+
<label>
23+
First Name:
24+
<TelerikTextBox @bind-Value="@SelectedEmployee.Name"></TelerikTextBox>
25+
</label>
2326
</div>
2427
<div class="col">
25-
<TelerikTextBox @bind-Value="@SelectedEmployee.LastName" Label="Last Name"></TelerikTextBox>
28+
<label>
29+
Last Name:
30+
<TelerikTextBox @bind-Value="@SelectedEmployee.LastName"></TelerikTextBox>
31+
</label>
2632
</div>
2733
</div>
2834
<div class="form-row">

0 commit comments

Comments
 (0)