I have a datagrid with a boolean column called IsActive. I have been able to format the the displaytemplate for the column to show the checkbox in the column, but I can't seem to figure out how to do something on the click event.
Here's my column definition:
Razor<DxDataGridColumn Field="@nameof(Violation.IsActive)" Caption="Active" Width="60px" TextAlignment="@DataGridTextAlign.Center">
<DisplayTemplate Context="context">
@{
var id = Guid.NewGuid().ToString();
var isActive = (context as Violation).IsActive;
<input id="@id" type="checkbox" checked="@isActive" onclick="@(UpdateIsActive())"/>
}
</DisplayTemplate>
<EditTemplate Context="context">
<DxCheckBox Checked="@nameof(Violation.IsActive)"></DxCheckBox>
</EditTemplate>
</DxDataGridColumn>
How can I make the onclick event call into my C# code?
Thanks in advance!
Gary