Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
Size of the browse form
-
- Posts: 315
- Joined: Sun Mar 14, 2021 8:48 am
- Location: Geneva
- Has thanked: 87 times
- Been thanked: 11 times
Size of the browse form
I am trying to have a browse form smaller than the screen. If I put small numbers on the browse tab for each column, nuBuilder resizes the browse form and it takes the full screen.
-
- nuBuilder Team
- Posts: 4297
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 445 times
- Contact:
Re: Size of the browse form
Hi,
Add in your form's Custom Code. This prevents the form from being resized automatically.
To disable the resizing for all forms, set this option to false in nuconfig.php:
The latest on Github includes a form option to control the browse width:
Add
Code: Select all
nuStopBrowserResize();
To disable the resizing for all forms, set this option to false in nuconfig.php:
Code: Select all
nuUXOptions['nuAutosizeBrowseColumns'] = false; // Autosize columns to fit the document width
You do not have the required permissions to view the files attached to this post.