SMART datagrid v.1 > Classes > GridBase
It will be fired during changing the selection area by mouse dragging.
After committing the selection, onSelectionEnded event will be fired.
grid.onSelectionResized = function (grid, selection) {
// Move the focus cell to the last cell among selection area
grid.setFocusedIndex(selection.getBounds().lastCell());
};