Remove number from pagination
Remove number from pagination
TL;DR
How can I remove the numbers from the pagination and just leave Next and Prev?
~
I'm using the server side processing api but the way I'm displaying the pagination is not based on normal pagination with Mysql, i.e. limit 1, 10
Instead, I'm using limit 10 along with a column count being under a certain number, the first load is under a huge number such as 999999999 the next series of the pagination would need to be lower than the smallest amount from the first series and so on.
Basically, this means i can allow a user to jump from the 1st page to the 4th, for example, so I'd like to remove the numbering in the pagination and simply give them the option to move back and forth through each page.
Just an FYi, running the query like this is much faster and my data is in the millions so i need to do it this way for performance.
Answers
The
pagingType
has a few different options that may work for you.Kevin