handleAfterSelectingRow method

  1. @override
void handleAfterSelectingRow(
  1. PlutoCell cell,
  2. dynamic value
)
inherited

The action that is selected in the Select dialog and processed after the dialog is closed.

Implementation

@override
void handleAfterSelectingRow(PlutoCell cell, dynamic value) {
  changeCellValue(cell, value, notify: false);

  if (configuration.enableMoveDownAfterSelecting) {
    moveCurrentCell(PlutoMoveDirection.down, notify: false);

    setEditing(true, notify: false);
  }

  setKeepFocus(true, notify: false);

  notifyListeners(true, handleAfterSelectingRow.hashCode);
}