SMART datagrid v.1 > Classes > GridDataSet
It will be fired just before moving the rows as much as count from row row location to newRow location.
If explicitly return false within this event handler, moving will be cancelled. After moving, onRowsMoved event will be fired.
dataset.onRowsMoving = function (ds, row, count, newRow) {
if (row == 0) {
return false;
}
}