We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 89a424d + 6384385 commit da105aaCopy full SHA for da105aa
src/iggrid/iggridbase.ts
@@ -114,6 +114,9 @@ export class IgGridBase<Model> extends IgControlBase<Model> implements AfterCont
114
element.data("igGridUpdating").endEdit();
115
}
116
jQuery(td).html(newFormattedVal);
117
+ if (grid.options.localSchemaTransform) {
118
+ record = grid.dataSource.schema().transform([record])[0];
119
+ }
120
grid.dataSource.updateRow(record[pkKey], record);
121
grid.dataSource._commitTransactionsByRowId(record[pkKey]);
122
0 commit comments