@acorex/data-grid 3.0.62 → 3.0.63
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/acorex-data-grid.umd.js +4 -1
- package/bundles/acorex-data-grid.umd.js.map +1 -1
- package/bundles/acorex-data-grid.umd.min.js +1 -1
- package/bundles/acorex-data-grid.umd.min.js.map +1 -1
- package/esm2015/lib/data-grid/datagrid.component.js +5 -2
- package/esm5/lib/data-grid/datagrid.component.js +5 -2
- package/fesm2015/acorex-data-grid.js +4 -1
- package/fesm2015/acorex-data-grid.js.map +1 -1
- package/fesm5/acorex-data-grid.js +4 -1
- package/fesm5/acorex-data-grid.js.map +1 -1
- package/lib/data-grid/datagrid.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1110,6 +1110,9 @@
|
|
|
1110
1110
|
this.isServerSideGroup = function (e) {
|
|
1111
1111
|
return e[_this.hasChildField];
|
|
1112
1112
|
};
|
|
1113
|
+
this.getColumnDefs = function () {
|
|
1114
|
+
return _this.gridApi.getColumnDefs();
|
|
1115
|
+
};
|
|
1113
1116
|
this.getServerSideGroupKey = function (e) {
|
|
1114
1117
|
return e[_this.keyField];
|
|
1115
1118
|
};
|
|
@@ -1592,7 +1595,7 @@
|
|
|
1592
1595
|
if (e.clientWidth > 0 && e.clientHeight > 0) {
|
|
1593
1596
|
this.performSizeColumnsToFit(e.api);
|
|
1594
1597
|
}
|
|
1595
|
-
this.refresh();
|
|
1598
|
+
// this.refresh();
|
|
1596
1599
|
// this.gridApi.paginationGoToFirstPage();
|
|
1597
1600
|
};
|
|
1598
1601
|
AXDataGridComponent.prototype.internalGridFirstDataRendered = function (e) {
|