Skip to content

SyncfusionExamples/How-to-keep-keyboard-open-when-canSubmitCell-is-false-in-Flutter-DataTable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

How to keep keyboard open when canSubmitCell is false in Flutter DataTable (SfDataGrid)?

In this article, we’ll demonstrate how to keep the keyboard open when canSubmitCell returns false in a Flutter DataTable.

First, initialize the SfDataGrid widget with the necessary properties. In the TextField’s onSubmitted callback, which is triggered when the user presses Done or Enter on the keyboard, call your asynchronous canSubmitCell method to determine whether editing should end. If it returns false, request focus back to the TextField. This ensures that the keyboard remains visible when editing is not allowed to conclude.

  @override
  Widget? buildEditWidget(
    DataGridRow dataGridRow,
    RowColumnIndex rowColumnIndex,
    GridColumn column,
    CellSubmit submitCell,
  ) {
    final String displayText =
        dataGridRow
            .getCells()
            .firstWhereOrNull(
              (dataCell) => dataCell.columnName == column.columnName,
            )
            ?.value
            ?.toString() ??
        '';

    final bool isNumericType =
        column.columnName == 'ID' || column.columnName == 'Salary';

    newCellValue = null;
    editingController.text = displayText;
    final focusNode = FocusNode();

    return StatefulBuilder(
      builder: (context, setState) {
        return Container(
          padding: const EdgeInsets.all(8.0),
          alignment:
              isNumericType ? Alignment.centerRight : Alignment.centerLeft,
          child: TextField(
            autofocus: true,
            controller: editingController,
            focusNode: focusNode,
            textAlign: isNumericType ? TextAlign.right : TextAlign.left,
            keyboardType:
                isNumericType ? TextInputType.number : TextInputType.text,
            decoration: const InputDecoration(
              contentPadding: EdgeInsets.fromLTRB(0, 0, 0, 8.0),
            ),
            onChanged: (value) {
              if (value.isNotEmpty) {
                newCellValue = isNumericType ? int.tryParse(value) : value;
              } else {
                newCellValue = null;
              }
            },
            onSubmitted: (value) async {
              // Ask if cell can be submitted
              bool canSubmit = await canSubmitCell(
                dataGridRow,
                rowColumnIndex,
                column,
              );
              if (canSubmit) {
                // Triggers onCellSubmit and allows keyboard to close.
                submitCell();
              } else {
                // Keep focus, prevent keyboard from hiding.
                focusNode.requestFocus();
              }
            },
          ),
        );
      },
    );
  }

  @override
  Future<bool> canSubmitCell(
    DataGridRow dataGridRow,
    RowColumnIndex rowColumnIndex,
    GridColumn column,
  ) async {
    if (column.columnName == 'ID' && newCellValue == null) {
      return false;
    } else {
      return true;
    }
  }

You can download this example on GitHub.

About

This demo shows How to keep keyboard open when canSubmitCell is false in Flutter DataTable

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •