PlutoColumnCheckReadOnly typedef

PlutoColumnCheckReadOnly = bool Function(PlutoRow row, PlutoCell cell)

It dynamically determines whether the cells of the column are in the edit state.

Once the readOnly value is set, whether the cell is editable cannot be changed during runtime, but if this callback is implemented, it can be determined whether the cell can be edited or not according to the state of the cell.

Implementation

typedef PlutoColumnCheckReadOnly = bool Function(
  PlutoRow row,
  PlutoCell cell,
);