Hi,
I have a custom cell where I can have 2 states (read only and editable). The problem is that GridCellProps does not contain any information about column edit mode. Example https://stackblitz.com/edit/react-qzapj7?file=app/main.jsx
<Column field="Discontinued" title="Discontinued" cell={DropDownCell} editable={false} // no access to "editable" from DropDownCell/>
and something like this
<Column field="Discontinued" title="Discontinued" cell={editable? DropDownCellEdit : DropDownCellReadOnly }/>or
<Column
field="Discontinued"
title="Discontinued"
cell={(props) => <DropDownCell {...props} editable={editable}/> }
/>
is not possible in my case.
Any plans to add this information to GridCellProps ?
