We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In order to sync a spreadsheet cell value with an external component, I do
spreadsheet.addCellValueChangeListener(event -> { CellReference a2 = new CellReference(spreadsheet.getCell("A2")); CellReference d4 = new CellReference(spreadsheet.getCell("D4")); if (event.getChangedCells().contains(a2) || event.getChangedCells().contains(d4)) { updateInvoiceNumberAndSource(); } });
This works fine when typing text but when doing undo, redo or pasting a value, the event is not triggered
A CellValueChangeListener is triggered whenever the Cell Value Changes
Above
Vaadin version(s): 24.0.0.alpha9 OS: mac
Chrome
The text was updated successfully, but these errors were encountered:
ugur-vaadin
Successfully merging a pull request may close this issue.
Description
In order to sync a spreadsheet cell value with an external component, I do
This works fine when typing text but when doing undo, redo or pasting a value, the event is not triggered
Expected outcome
A CellValueChangeListener is triggered whenever the Cell Value Changes
Minimal reproducible example
Above
Steps to reproduce
Environment
Vaadin version(s): 24.0.0.alpha9
OS: mac
Browsers
Chrome
The text was updated successfully, but these errors were encountered: