FdcGridCanEditColumn typedef

FdcGridCanEditColumn = bool Function(int rowIndex, FdcGridColumn column, FdcGridRowContext row)

Decides whether a specific column may be edited for a row.

rowIndex is zero-based in the current view, column is the resolved grid column configuration, and row describes the same row. Return false to exclude that cell from edit traversal. Keep the predicate fast and side-effect free because navigation may evaluate it repeatedly.

Implementation

typedef FdcGridCanEditColumn =
    bool Function(
      int rowIndex,
      FdcGridColumn<dynamic> column,
      FdcGridRowContext row,
    );