How to bind edit events #1486
-
How to bind edit cell events, I did not find the relevant way. |
Beta Was this translation helpful? Give feedback.
Answered by
Dushusir
Mar 5, 2024
Replies: 1 comment
-
You can use the Facade or Uniscript API to monitor command execution univerAPI.onCommandExecuted((command, options) => {
if (command.id === 'sheet.command.set-range-values') {
console.log(command)
}
}) More tutorial https://univer.ai/guides/facade/ |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Dushusir
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use the Facade or Uniscript API to monitor command execution
More tutorial https://univer.ai/guides/facade/