@esfaenza/es-table 11.2.83-beta7 → 11.2.83-beta8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5143,7 +5143,7 @@
5143
5143
  */
5144
5144
  EsTableComponent.prototype.finalizeUserEdit = function (rowItem, item, columnIndex) {
5145
5145
  rowItem._editing = false;
5146
- var old = rowItem.old_value;
5146
+ var old = this.DynamicRowColumnsDefinition.length > 0 ? rowItem.edits[item._hash].old_value : rowItem.old_value;
5147
5147
  var niu = item[rowItem.PropertyName];
5148
5148
  var olddate = this.dateExts.getDateConvertion(old);
5149
5149
  var niudate = this.dateExts.getDateConvertion(niu);