SpreadJS Documentation
selectNextControl Method
Selects the next control.
Syntax
var value; // Type: any
value = GcSpread.Sheets.SpreadActions.selectNextControl();
function selectNextControl() : any;
Example
This example maps the selectNextControl action to the Tab key.
activeSheet.addKeyMap(GcSpread.Sheets.Key.tab, false, false, false, false, GcSpread.Sheets.SpreadActions.selectNextControl); // Tab key
activeSheet.addKeyMap(GcSpread.Sheets.Key.tab, false, true, false, false, GcSpread.Sheets.SpreadActions.selectPreviousControl); // Shift key and Tab key
See Also

Reference

SpreadActions class

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.