SMART datagrid v.1 > Classes > GridBase
It will be fired if selection is committed when selecting by mouse dragging or keyboard.
During the selection, onSelectionResized, onSelectionChanged events will be fired in order.
grid.onSelectionEnded = function (grid, selection) {
var bounds = selection.getBounds();
console.log("Selection Ended: " + bounds.R1() + ' ~ ' + bounds.R2() + ' rows.');
};