SpreadJS Documentation
bind Method
The event type.
Specifies additional data to pass along to the function.
Specifies the function to run when the event occurs.
Binds an event to the Spread.
Syntax
var instance = new GcSpread.Sheets.Spread(host, options);
var value; // Type: any
value = instance.bind(type, data, fn);
function bind( 
   type : string,
   data : Object,
   fn : Function
) : any;

Parameters

type
The event type.
data
Specifies additional data to pass along to the function.
fn
Specifies the function to run when the event occurs.
Example
This example binds events to functions.
sheet.setActiveCell(5,5);
alert(sheet.getActiveColumnIndex());
alert(sheet.getActiveRowIndex());
spread.bind(GcSpread.Sheets.Events.EnterCell, function (event, data) {
    alert(data.col);
    alert(data.row);
  });
spread.bind(GcSpread.Sheets.Events.LeaveCell, function (event, data) {
    alert(data.col);
    alert(data.row);
  });
See Also

Reference

Spread type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.