Page 1 of 1
Launch form size
Posted: Sun May 11, 2025 7:48 am
by yvesf
Hello,
In launch form, how do you control its size ? I use a launch form as popup and I have got always space especially at the bottom which creates weird popups.
Capture d'écran 2025-05-11 074522.png
Thx if you have solution to this layout pb,
Yves
Re: Launch form size
Posted: Sun May 11, 2025 7:58 am
by steven
Is this another question?
Re: Launch form size
Posted: Sun May 11, 2025 10:13 am
by yvesf
yes it is another question requesting how to control the pop-up size
Yves
Re: Launch form size
Posted: Sun May 11, 2025 10:28 am
by steven
Yves,
What have you tried so far to fix your problem?
Steven
Re: Launch form size
Posted: Sun May 11, 2025 10:57 am
by yvesf
Hello Steven,
I'm trying to use the system as-is, without customization as much as possible.
I noticed that when using nuHideHolders(0,1,2)
, a launch form could be used as a popup : it's close to what I need — but it seems there's no control over its size.
My question is: does the system provide a built-in way (e.g., a formula or setting) to control the size of the launch form popup?
If not, I understand we can achieve this through JavaScript, but I’d prefer to use native features if available.
Thanks in advance for pointing me in the right direction!
Best regards,
Yves
Re: Launch form size
Posted: Sun May 11, 2025 11:20 am
by steven
Try Changing the amount of area taken up by the Objects.
Re: Launch form size
Posted: Sun May 11, 2025 5:30 pm
by kev1n
Try reducing the popup size by adding this JS to the popup custom code:
Code: Select all
function setDialogHeight(dialogId, height) {
var dialog = $(dialogId, window.parent.document);
dialog.css('height', height);
}
// Usage
setDialogHeight('#nuDragDialog', '400px');
setDialogHeight('#nuWindow', '360px');
Change heights accordingly