I am looking for a listener/event that would fire up when a user makes some change to a cell in Excel, so that my add-in can do some processing in the background i.e. save that change in the backend through a service call.
Currently, I save the data in a set of rows through service calls when the user clicks on the publish button in the add-in. However, it'd be nice if the user doesn't need to do this and instead a particular row gets saved as soon as the user changes something.
Is there any features like this in Office.js? Or perhaps some way to simulate it?