Hi Murat,
Query 1: CurrentCellBeginEdit event not triggered for the checkbox cell type.
CurrentCellBeginEdit event is not triggered for checkbox cell type and this is the behavior of the SfCellGrid. However CurrentCellValueChanged event of SfCellGrid will be fired when the checkbox state is changed by an user action.
grid.CurrentCellValueChanged += Grid_CurrentCellValueChanged;
private void Grid_CurrentCellValueChanged(object sender, Syncfusion.UI.Xaml.CellGrid.Helpers.CurrentCellValueChangedEventArgs e)
{
var checkbox = grid.CurrentCell.Style.CellRenderer.CurrentCellRendererElement as CheckBox;
if (checkbox is CheckBox)
{
var State = checkbox.IsChecked;
}
}
|
Query 2: Checkbox state not updated after change the cell value.
We can able to reproduce the reported issue “checkbox state not updated when change the cell value at runtime”. So separate incident has been created under your account. Please log into the below link for further updates.
Regards,
Thirumurugan