We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e137e6b commit 4c667e7Copy full SHA for 4c667e7
src/features/pagination/js/pagination.js
@@ -403,8 +403,11 @@
403
404
var options = uiGridCtrl.grid.options;
405
406
+
407
uiGridCtrl.grid.renderContainers.body.registerViewportAdjuster(function (adjustment) {
- adjustment.height = adjustment.height - gridUtil.elementHeight($elm, "padding");
408
+ if (options.enablePaginationControls) {
409
+ adjustment.height = adjustment.height - gridUtil.elementHeight($elm, "padding");
410
+ }
411
return adjustment;
412
});
413
0 commit comments