Posted 11 October 2018, 8:42 am EST
. How to set viewPort top row and left column manually I want to do same like as Alt+Page Up and Alt+Page Down Function in Excel sheet
Forums Home / Spread / SpreadJS
Posted by: barweprashant91 on 11 October 2018, 8:42 am EST
Posted 11 October 2018, 8:42 am EST
. How to set viewPort top row and left column manually I want to do same like as Alt+Page Up and Alt+Page Down Function in Excel sheet
Posted 12 October 2018, 4:36 am EST
Hello,
You can customize the keys behavior with cammandmanager in SpreadJS. You can use setShortcutKey() method to handle navigation in your own way for Alt+PageUp or Alt+PageDown. Here is the code to do that:
//for page up
spread.commandManager().setShortcutKey(“navigationPageUp”, GC.Spread.Commands.Key.pup, false, false, true, false);
//for page down
spread.commandManager().setShortcutKey(“navigationPageDown”, GC.Spread.Commands.Key.pdn, false, false, true, false);
Thanks,
Deepak Sharma