@esfaenza/es-table 11.2.34 → 11.2.35
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 +1 -1
- 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 +2 -2
- package/fesm2015/esfaenza-es-table.js +1 -1
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/package.json +2 -2
|
@@ -1817,7 +1817,7 @@
|
|
|
1817
1817
|
var columns = this.est.arrayMode ? this.est.arrayColumns : castedView.columns;
|
|
1818
1818
|
var columnsOrderings = this.est.arrayMode ? this.est.arrayColumnOrdering : castedView.column_ordering;
|
|
1819
1819
|
var toStore = { columns: JSON.parse(JSON.stringify(columns)), column_ordering: JSON.parse(JSON.stringify(columnsOrderings)) };
|
|
1820
|
-
this.prefService.store(this.est.ngControl.name, toStore).subscribe();
|
|
1820
|
+
this.prefService.store(this.est.ngControl.name, toStore, 'preference').subscribe();
|
|
1821
1821
|
}
|
|
1822
1822
|
// Rieseguo l'ultima ricerca bindata alla tabella
|
|
1823
1823
|
// Mi assicuro di farlo dopo l'espansione del changed o rischio che la ricerca mi ridia colonne che in realtà non esistono
|