xOnCellSubmit method

void xOnCellSubmit(
  1. XDataGridRow dataGridRow,
  2. RowColumnIndex rowColumnIndex,
  3. GridColumn column
)

Implementation

void xOnCellSubmit(XDataGridRow dataGridRow, RowColumnIndex rowColumnIndex, GridColumn column) {
  set_ItemPropValue(rowColumnIndex, column, cellInEdit_Value);
  dataGridRow.getCells()[rowColumnIndex.columnIndex] = DataGridCell<dynamic>(columnName: column.columnName, value: cellInEdit_Value);
}