@esfaenza/es-table 11.2.61 → 11.2.62
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 +4 -15
- 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/esfaenza-es-table.metadata.json +1 -1
- package/esm2015/lib/components/es-table/es_table.component.js +4 -15
- package/esm2015/lib/core/handlers/ItemsHandler.js +2 -2
- package/fesm2015/esfaenza-es-table.js +4 -15
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/lib/components/es-table/es_table.component.d.ts +2 -12
- package/package.json +1 -1
|
@@ -1987,7 +1987,7 @@
|
|
|
1987
1987
|
return ret;
|
|
1988
1988
|
}
|
|
1989
1989
|
else {
|
|
1990
|
-
var ret = this.est.
|
|
1990
|
+
var ret = this.est.ItemSourceProperty ? this.est.View[this.est.ItemSourceProperty] : this.est.View.items;
|
|
1991
1991
|
if (!ret)
|
|
1992
1992
|
ret = [];
|
|
1993
1993
|
// Setto variabile interna per specificare che questo è un elemento normale, non un gruppo o altro
|
|
@@ -3613,18 +3613,8 @@
|
|
|
3613
3613
|
this.PagingStyle = null;
|
|
3614
3614
|
/** Indica dove visualizzare le informazioni di paginazione, se sopra, sotto o in entrambi */
|
|
3615
3615
|
this.RowGroupingPagingStyle = null;
|
|
3616
|
-
/**
|
|
3617
|
-
|
|
3618
|
-
*
|
|
3619
|
-
* @deprecated Utilizzato solo per un caso particolare del Metering
|
|
3620
|
-
*/
|
|
3621
|
-
this.SecondarySource = null;
|
|
3622
|
-
/**
|
|
3623
|
-
* Sorgente dati secondaria
|
|
3624
|
-
*
|
|
3625
|
-
* @deprecated Utilizzato solo per un caso particolare del Metering
|
|
3626
|
-
*/
|
|
3627
|
-
this.TertiarySource = null;
|
|
3616
|
+
/** Qualora per qualsiasi motivo non venisse usato **items** dell'AppSearch questo Input indica qual è il nome della proprietà da utilizzare */
|
|
3617
|
+
this.ItemSourceProperty = "";
|
|
3628
3618
|
/** Indica se utilizzare la cache di selezione che permette di mantenere gli stati di selezione dei vari oggetti navigando da una pagina all'altra */
|
|
3629
3619
|
this.UseSelectionCache = null;
|
|
3630
3620
|
/** Permette di decidere se, in modalità raggruppamento, mostrare o meno il valore delle colonne di gruppo negli oggetti finali. Di default sono nascosti */
|
|
@@ -4709,8 +4699,7 @@
|
|
|
4709
4699
|
SavePreferences: [{ type: i0.Input }],
|
|
4710
4700
|
PagingStyle: [{ type: i0.Input }],
|
|
4711
4701
|
RowGroupingPagingStyle: [{ type: i0.Input }],
|
|
4712
|
-
|
|
4713
|
-
TertiarySource: [{ type: i0.Input }],
|
|
4702
|
+
ItemSourceProperty: [{ type: i0.Input }],
|
|
4714
4703
|
UseSelectionCache: [{ type: i0.Input }],
|
|
4715
4704
|
ShowItemGroupsColumns: [{ type: i0.Input }],
|
|
4716
4705
|
UserEdits: [{ type: i0.Input }],
|