Has anyone figured this out?
I would love to expand my table to fullscreen when needed.
I came across this which suggested it is possible via CSS but no method mentioned. https://community.retool.com/t/i-am-currently-trying-to-create-a-button-so-that-on-click-they-will-be-able-to-expand-a-container-to-full-screen/52917
Hey @ferret141
Use this custom css according to your table id for full screen table.
#table1--0 {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
margin: 0;
padding: 0;
z-index: 9999;
}
Hey @ferret141 - the CSS that @WidleStudioLLP shared above looks like it should do what you need it to! Are you looking for anything else, in particular?