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
v0.5.5
New install: Following https://docs.univer.ai/en-US/guides/sheets/getting-started/installation
univerAPI.addEvent(univerAPI.Event.ActiveSheetChanged, (params) => { const { workbook, activeSheet } = params; console.log('after active sheet changed', params); });
Nothing displays in console
However univerAPI.addEvent(univerAPI.Event.BeforeSheetMove, (params) => { const { workbook, worksheet, newIndex, oldIndex } = params; console.log('before sheet move', params); });
Works and displays in console.
Sorry in advance, but I am terribly new to reporting bugs.
Would spit out data in console.
No console.log data is present
System: OS: Windows 11 10.0.26100 CPU: (16) x64 AMD Ryzen 7 PRO 5875U with Radeon Graphics Memory: 5.85 GB / 31.31 GB Binaries: Node: 18.3.0 - C:\Program Files\nodejs\node.EXE npm: 8.11.0 - C:\Program Files\nodejs\npm.CMD Browsers: Edge: Chromium (129.0.2792.89) Internet Explorer: 11.0.26100.1882
The text was updated successfully, but these errors were encountered:
I was using preset prior to looking at preset core library as 0.5.2, the change I am interested in is the latest 0.5.5 release notes:
"Added support for sheet-related events: ActiveSheetChanged, SheetDeleted, SheetHideChanged, SheetMoved, SheetNameChanged, SheetTabColorChanged, SheetValueChanged #4494"
Sorry, something went wrong.
No branches or pull requests
Before you submit this issue, have you checked the following
Affected packages and versions
v0.5.5
Reproduction link
New install: Following https://docs.univer.ai/en-US/guides/sheets/getting-started/installation
univerAPI.addEvent(univerAPI.Event.ActiveSheetChanged, (params) => {
const { workbook, activeSheet } = params;
console.log('after active sheet changed', params);
});
Nothing displays in console
However
univerAPI.addEvent(univerAPI.Event.BeforeSheetMove, (params) => {
const { workbook, worksheet, newIndex, oldIndex } = params;
console.log('before sheet move', params);
});
Works and displays in console.
Sorry in advance, but I am terribly new to reporting bugs.
Expected behavior
univerAPI.addEvent(univerAPI.Event.ActiveSheetChanged, (params) => {
const { workbook, activeSheet } = params;
console.log('after active sheet changed', params);
});
Would spit out data in console.
Actual behavior
No console.log data is present
System information
System:
OS: Windows 11 10.0.26100
CPU: (16) x64 AMD Ryzen 7 PRO 5875U with Radeon Graphics
Memory: 5.85 GB / 31.31 GB
Binaries:
Node: 18.3.0 - C:\Program Files\nodejs\node.EXE
npm: 8.11.0 - C:\Program Files\nodejs\npm.CMD
Browsers:
Edge: Chromium (129.0.2792.89)
Internet Explorer: 11.0.26100.1882
The text was updated successfully, but these errors were encountered: