@esfaenza/es-table 11.2.24 → 11.2.25
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.
- package/bundles/esfaenza-es-table.umd.js +5 -0
- package/bundles/esfaenza-es-table.umd.js.map +1 -1
- package/bundles/esfaenza-es-table.umd.min.js +1 -1
- package/bundles/esfaenza-es-table.umd.min.js.map +1 -1
- package/esm2015/lib/core/handlers/classes/ColumnMetadataHandler.js +6 -1
- package/fesm2015/esfaenza-es-table.js +5 -0
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/package.json +1 -1
|
@@ -1350,6 +1350,11 @@
|
|
|
1350
1350
|
newColList_1.push(c);
|
|
1351
1351
|
});
|
|
1352
1352
|
});
|
|
1353
|
+
// Recupero anche campi nuovi che nell'iterazione vecchia non c'erano (serve durante lo sviluppo in modo da non perdersi fra un EDIT + F5 e l'altro)
|
|
1354
|
+
this.est.ColumnsList.forEach(function (c) {
|
|
1355
|
+
if (!newColList_1.find(function (t) { return t == c.id; }))
|
|
1356
|
+
newColList_1.push(c);
|
|
1357
|
+
});
|
|
1353
1358
|
this.est.ColumnsList = newColList_1;
|
|
1354
1359
|
}
|
|
1355
1360
|
// In ogni caso questo non mi serve più, lo resetto **
|