Hey all,
I have an app page with several tables next to each other, which causes the navigation at the bottom of the table to look cluttered.
Since these tables do not need the navigation I was wondering if it is possible to turn them off or hide them somehow.
Yes, that is possible by setting both pagination.enabled and pagination.showInfo to false in the table element’s config:
"config": {
"pagination": {
"enabled": false,
"showInfo": false
}
}
If you just want to disable the navigation buttons and dropdowns, you can leave out showInfo or set it to its default of true.
1 Like