I have a checkbox of type TelerikCheckBox inside a column in my Grid using the code below.
If I press the edit mode of the grid the checkbox can be altered but the type of the checkbox changes from class="k-checkbox telerik-blazor" to type input so the layout changes (see attachment)
in my razor.cs file
private
ObservableCollection<ModelVM> GridData {
get
;
set
; }
Inside my razor file I have this (simplified)
<TelerikGrid Data=
"@GridData"
OnEdit="@EditHandler"
OnUpdate="@UpdateHandler">
<GridColumns>
<GridColumn Field=
"isChecked"
Title=
"Selected"
Editable=
"true"
>
<Template>
@{
var isChecked = context
as
ModelVM;
<TelerikCheckBox Value=
"isChecked.isChecked"
/>
}
</Template>
</GridColumn>
</GridColumns>
</TelerikGrid>