Spread.Sheets Documentation
ButtonClicked type
GC.Spread.Sheets.Events Namespace : ButtonClicked type
Occurs when the user clicks a button, check box, or hyperlink in a cell.
Example
//This example creates a button cell.
var cellType = new GC.Spread.Sheets.CellTypes.Button();
cellType.buttonBackColor("#FFFF00");
cellType.text("this is a button");
activeSheet.setCellType(1,1,cellType);
//bind
spread.bind(GC.Spread.Sheets.Events.ButtonClicked, function (e, args) {
    var sheet = args.sheet, row = args.row, col = args.col;
    var cellType = activeSheet.getCellType(row, col);
    if (cellType instanceof GC.Spread.Sheets.CellTypes.Button) {
        alert("Button Clicked");
    }
});
Inheritance Hierarchy

Object
   GC.Spread.Sheets.Events.ButtonClicked

See Also

Reference

GC.Spread.Sheets.Events Namespace