hclleapforum

Open full view…

Can we increase the size of Table Popup

srir
Wed, 29 Apr 2020 19:10:14 GMT

We are using tables a lot in our forms. The size of table pop up is limited and not able to see all the fields inside the pop up together. Is there a way to increase the height of the pop up so that we can see all fields. Can you please suggest

christopher_dawes
Thu, 14 May 2020 15:25:47 GMT

Yes you can increase its size using CSS. You can use these classes to do it /* RESIZE TABLE DIALOG * This does not account for different screen sizes, if the screen is smaller then * the dialog will have scrollbars. * ---lotusDialog-- */ .lfMn.lotusui30 .lfTableDialog { width: 55% !important; height: 60% !important; left: 15% !important; top: 0px !important; } .lfMn.lotusui30 .lfTableDialog .lfDialog { height: 100%; } .lfMn.lotusui30 .lfTableDialog .lfDialog .lfDialogContainer { height: 90% !important; } .lfMn.lotusui30 .lotusDialog .lotusFormTable, .lfMn.lotusui30 .lotusDialog .lotusFormTable td, .lfMn.lotusui30 .lotusDialog .lotusDialogContent { height: 100%; max-height: none; } /* End of RESIZE TABLE DIALOG */ Modify the numbers till you get it the size you want.