Button Location - Bottom of Page

0
Trying to make a button stick at visible bottom of page (footer), but so far, I can only locate after the last data row… I’ve placed the button outside the data layout grid:   But It shows up immediately after the last row.
asked
2 answers
4

You can use css to align the button to the bottom of the page:

for example: 

position: absolute; bottom: 5%; left: 5%;

You can either enter this in the style property of the button or add a class to the button and put it in the css stylesheets of your application.

answered
1

Maybe adding an extra Layout Grid is a solution.

Place the first two Layout Grids in the first row and the button ‘Close page’ in the second row.

-------------------------------------------------------

|  [Layout Grid 1]

|  [Layout Grid 2]

-------------------------------------------------------

|  [Close Page]

-------------------------------------------------------


 

answered