@acorex/data-grid 6.5.46 → 6.5.47
Sign up to get free protection for your applications and to get access to all the features.
@@ -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.
|
1359
|
+
this.gridApi.setCacheBlockSize(Number(e.target.value));
|
1359
1360
|
});
|
1360
1361
|
const option1 = document.createElement('option');
|
1361
1362
|
option1.setAttribute('value', '10');
|