basictable
basictable copied to clipboard
Pagination on the last row
Within my table in the last row I have a pagination, I want to omit that this specific row is included in the operation because it places a column to the left and decreases the space of my pagination, is there something I can do?
For those looking for something similar, I solved the problem using CSS. Add the footertb class to my last row and create the following class:
.footertb td::before { content: '' !important; display: none !important; }
Nice CSS fix @diclonius, I'll look into adding a class of config that can skip rows.