Cell Edit Hook
React Data Grid
File of interest
1: The .jsx component where you added the grid with
1: The .jsx component where you added the grid with
<DeeboDataGrid /> or deebo-grid/src/App.jsx in the default code setup.
The grid automatically emits a cell edit event every time a cell is edited, pictured in the code below.
Look at the original code you received in the src/App.jsx file.
By default, the code is set up to listen to any edits and execute the handleCellEdit method,
which just logs the cell edit event data to the console. Use the function's execution context to
hook edits to your backend.