SpreadJS Documentation
Setting the Active Cell

You can specify the active cell.

Using Code

This example sets the active cell.

JavaScript
Copy Code
$("#button1").click(function () {
    //Set cell (3,3) to active
    $("#ss").data("spread").getActiveSheet().setActiveCell(3, 3);
});

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.