SMART datagrid v.1 > Classes > GridBase
Commit row editing and transfer the entered data to connected DataSet. If committed normally, it will return true. If it is not editing state or throws an except and raiseFailError is false, it will return false.
If parameter force is true, it will unconditionally transfer the data to dataset, and if it is false, it will transfer only when the data is changed actually.
$('#commit').click(function () {
grid.commit(true);
});