Posted 16 January 2020, 8:25 am EST
Good morning/afternoon.
I’m currently trying to solve the lack of watermark functionality within my spreadsheet instance [1] adding few new lines at the bottom of a sheet instance and using the isProtected option with locked ranges.
Unfortunately it seems like [2]:
- there is no way to enable/disable the hide/unhide functionality.
- whenever i set allowSelectLockedCells to false the option disable automagically the Insert/Delete options within the context menus
this is the testing setting
protectionOptions: {
allowDeleteRows: true,
allowDeleteColumns: true,
allowInsertRows: true,
allowResizeRows: true,
allowInsertColumns: true,
allowResizeColumns: true,
allowDargInsertRows: true,
allowDragInsertColumns: true,
allowSelectLockedCells: false,
// allowSelectUnlockedCells: true,
allowSort: true,
allowFilter: true,
},
refs
[1] https://www.grapecity.com/forums/spread-sheets/inject-watermarks-or-addit
[2] https://www.grapecity.com/spreadjs/docs/v13/online/celllock.html
