DataGrid Changing Row Value with Double Click (Client)
async DataGrid1_OnRowDoubleClick(args: Controls.EventArgs.IRowDoubleClickEventArgs) {
this. DataGrid1.rows.find(row =```>``` row.cells.find(cell =```>``` cell.name == 'Code' && cell.value == args.row.Code)).cells.find(cell =```>``` cell.name == 'Status').value = 1 - args.row.Statu;
}