@acorex/data-grid 6.5.45 → 6.5.47

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.
@@ -1354,8 +1354,9 @@ class AXDataGridComponent {
1354
1354
  const pagingPanel = this.ref.nativeElement.querySelector('.ag-paging-panel');
1355
1355
  const select = document.createElement('select');
1356
1356
  select.addEventListener('change', (e) => {
1357
+ debugger;
1357
1358
  this.gridApi.paginationSetPageSize(Number(e.target.value));
1358
- this.cacheBlockSize = Number(e.target.value);
1359
+ this.gridApi.setCacheBlockSize(Number(e.target.value));
1359
1360
  });
1360
1361
  const option1 = document.createElement('option');
1361
1362
  option1.setAttribute('value', '10');