Pagination

0
How to create a pagination for datagrid at the bottom of the page?
asked
1 answers
0

You can do this by applying custom CSS to your theme for the class .mx-grid .mx-grid-controlbar .mx-grid-pagingbar; for example:

.mx-grid .mx-grid-controlbar .mx-grid-pagingbar {
    position: absolute;
    bottom: 0px;
    right: 0;
}

 

will look like this:

answered