SMART datagrid v.1 > Classes > EditOptions
If specify as true, when commit the editing by Enter key or arrow keys, or explicitly commit by calling GridBase.commitEditor during cell editing, even if occur editing error, it will still close the editor.
Defaults to false.
grid.setOptions({
edit: {
hideEditorOnFailed: true
}
});
grid.setEditOptions({
hideEditorOnFailed: true
});
grid.editOptions().setHideEditorOnFailed(true);