SMART datagrid v.1 > Classes > DisplayOptions
If set the value as greater than 0, even if the location of current row is changed, Change Event will not be fired immediately but after a specified period of time since the previous event.
It is specified in milliseconds.
Defaults to 0.
grid.setOptions({
display: {
rowChangeDelay: 500
}
});
grid.setDisplayOptions({
rowChangeDelay: 500
});
grid.displayOptions().setRowChangeDelay(500);