Posted 31 July 2023, 2:05 pm EST
Hello,
I am trying to implement a feature where I want a dialog to show up if a user attempts to copy paste on a locked cell. So if a user is on A1 cell and does Ctrl+C and moves to A2 cell and does Ctrl+V, it should create a message dialog. So far, it only works if a user attempts the copy paste on the same cell.
Here is a glimpse of what I have so far.
activeSheet.bind(GC.Spread.Sheets.Events.InvalidOperation, function(e, args) {
if (cell is locked){
// create a dialog
}
});
Again, the issue is when I paste into a different locked cell, the dialog does not show up.
