SMART datagrid v.1 > Classes > GridBase
It will be fired when the location of Focused Row has reached the last row.
You can implement in the way of additionally loading the data set within this event handler.
grid.onScrollToBottom = function (grid) {
if (dataset.rowCount() < maxRows) {
// load data...
}
}