Hello @smalgotrader,
With dash ag grid 2.2.0, you now have access to the api and columnApi.
The api allows you to add custom event listeners, now, this won’t directly trigger a callback, but you can definitely hook it into something to trigger it.
You could use the cellContextMenu
event, and make sure the column matches the column you want, if so. Prevent the default and show your custom menu where they can disable or enable the updates.
To add it, do something like this:
dash_ag_grid.getApi(“id”).addEverListener(“cellContextMenu”, customContext)
Where customContext is your custom Js function.