pluto_grid
pluto_grid copied to clipboard
[Help] The onChange function is not invoked.
The onChange function is not invoked.
This is my code
PlutoGrid(
columns: reboundColums,
rows: reboundRows,
columnGroups: reboundColumnGroups,
configuration: PlutoGridConfiguration(
style: PlutoGridStyleConfig(
gridBorderRadius: BorderRadius.circular(15),
),
),
onChanged: (event) {
reboundStateManager.changeCellValue(
event.row!.cells['Diff']!,
event.row!.cells['#1']!.value - event.row!.cells['#2']!.value,
);
},
onLoaded: (PlutoGridOnLoadedEvent event) {
reboundStateManager = event.stateManager;
},
),
The onChanged callback is called when the cell's value has changed.
The
onChangedcallback is called when the cell's value has changed.
Should I press the confirmation button after changing the value in the cell?
This issue is stale because it has been open for 30 days with no activity.
This issue was closed because it has been inactive for 14 days since being marked as stale.