If you create a custom class for this type of page you can add this to it:
(yourcustomclass) .mx-grid-pagingbar {
position: fixed;
float: right;
bottom: 5px;
right: 5px;
}
That will put your buttons in the bottom right corner for you. You should also consider using a microflow and using current device type. This would allow you to put something with a smaller scroll area on a tablet specific page.
Hello Willem,
If by the paging bottom you mean the navigation buttons of the datagrid you coud use a snipet with the following code, where the .ClassAssignToDatagrid is the class that you assign to the datagrid in the modeler.
var content= document.querySelector(".ClassAssignToDatagrid .mx-grid-content");
var header =document.querySelector(".ClassAssignToDatagrid .mx-grid-pagingbar");
content.parentNode.insertBefore(header, content.nextSibling);
I am 100% sure it works on pages that are not mobile , but I have not tested it on mobile once