xOnCellSubmit method

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

Implementation

@override
void xOnCellSubmit(XDataGridRow dataGridRow, RowColumnIndex rowColumnIndex, GridColumn column) {
  super.xOnCellSubmit(dataGridRow, rowColumnIndex, column);
  onSubmit != null ? onSubmit!(list[rowColumnIndex.rowIndex] as XFDataItem) : null;
}