Add option to move Template Grid page navigation buttons to below the grid - Mendix Forum

Add option to move Template Grid page navigation buttons to below the grid

3

I am using the built in Template Grid widget and it is only possible to have the page navigation (next/previous) above the grid. It would be nice if there was an option added to move the page navigation to below the main grid content. As users will scroll down the page to see the objects in the grid and then currently have to scroll back up to navigate to the next page.

asked
2 answers

@Paul Moes, thanks that is helpful.

Created

Would be nice but you can achieve it with css.

.grid-navigation-bottom{
    position:relative;
    padding-bottom:50px
}

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

Created