Posted 27 November 2024, 4:16 am EST
I’m handling cell value changes in SpreadJS using the following code:
// Handle value changes
sheet.bind(GC.Spread.Sheets.Events.ValueChanged, function (e, info) {
console.log('Value changed event triggered');
handleChange(info, sheet);
});
Currently, when I press Enter after changing a cell’s value, the active cell **moves one row down **by default. However, I want the active cell to remain on the same cell where the value was entered.
How can I achieve this behavior?
Thank you in advance for your help!