How do I format field labels in the grid popup edit form? I want to style the labels on a popup edit form. I also would like to associate the labels with fields.
<GridColumn Field="@nameof(ParticipantVM.ParticipantCode)" Width="100px" Filterable=true>
<EditorTemplate>
@{
var item = (ParticipantVM)context;
<div @onkeydown:stopPropagation>
<TelerikTextBox @bind-Value="@item.ParticipantCode" Id="pcode" Placeholder="Enter a Code" DebounceDelay="0" />
</div>
}
</EditorTemplate>
</GridColumn>