0

I am loading xlsx files in the iPad using wijmo spreadJs framework. When i select a cell i am be to see "Cut", "Copy" & "Paste" option be default. I want to disable it.

Jason Goemaat
  • 28,692
  • 15
  • 86
  • 113
Warrior
  • 39,156
  • 44
  • 139
  • 214

1 Answers1

1

You can disable all the entire spreadsheet

spreadsheet.setIsProtected(true);

Then you won't be able to perform any action, just visualize

Juan Rivillas
  • 897
  • 2
  • 9
  • 23