SMART datagrid v.1 > Classes > GridBase
It will be fired when click the cell which is operated by the button such as ButtonCellRenderer, etc.
grid.onDataButtonClicked = function (grid, index) {
setTimeout(function () {
alert(index.column.name() + ' cell is clicked.');
});
};