@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.
@@ -4612,7 +4612,7 @@ class EsTableComponent {
4612
4612
  */
4613
4613
  finalizeUserEdit(rowItem, item, columnIndex) {
4614
4614
  rowItem._editing = false;
4615
- let old = rowItem.old_value;
4615
+ let old = this.DynamicRowColumnsDefinition.length > 0 ? rowItem.edits[item._hash].old_value : rowItem.old_value;
4616
4616
  let niu = item[rowItem.PropertyName];
4617
4617
  let olddate = this.dateExts.getDateConvertion(old);
4618
4618
  let niudate = this.dateExts.getDateConvertion(niu);