@acorex/data-grid 6.5.51 → 6.5.52

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.
@@ -1110,9 +1110,11 @@ class AXDataGridComponent {
1110
1110
  }, 10);
1111
1111
  }
1112
1112
  ngAfterViewInit() {
1113
- setTimeout(() => {
1114
- this.handlePageSize();
1115
- });
1113
+ if (this.remoteOperation && !this.paginationAutoPageSize) {
1114
+ setTimeout(() => {
1115
+ this.handlePageSize();
1116
+ });
1117
+ }
1116
1118
  if (this.treeData === true) {
1117
1119
  this.columnDefs = this.columns.map((c) => c.render());
1118
1120
  const groupColumn = this.columnDefs.find((c) => c.rowGroupIndex == '0' && c.field !== '');