FdcGridCanEditRow typedef

FdcGridCanEditRow = bool Function(int rowIndex, FdcGridRowContext row)

Decides whether the row at rowIndex may enter edit traversal.

rowIndex is zero-based in the current grid view and row is the matching row context. Return false to prevent editing cells in that row. The predicate may inspect application state but should remain fast and side-effect free because traversal can evaluate it repeatedly.

Implementation

typedef FdcGridCanEditRow = bool Function(int rowIndex, FdcGridRowContext row);