SMART datagrid v.1 > Classes > EditOptions
If it is true and readOnly is false, the user can append rows after the last row.
Defaults to false.
grid.setOptions({
edit: {
appendable: true,
insertable: false
}
});
grid.setEditOptions({
appendable: true,
insertable: false
});
grid.editOptions().setAppendable(false);