Hello,
I use a lookup object to assign records to a subform.
The selection of records works fine but if a try to create a new record from the (lookup-) list the edit form is too narrow.
Is there a possibility to change the width of the windows?
BR, Oli
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.
Pop-Up: Width is too small
Pop-Up: Width is too small
You do not have the required permissions to view the files attached to this post.
-
- nuBuilder Team
- Posts: 4416
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 74 times
- Been thanked: 472 times
- Contact:
Re: Pop-Up: Width is too small
What you could do is maximise the popup window by code.
JS in the popup's custom code:
JS in the popup's custom code:
Code: Select all
if (nuIsIframe()) {
var e = {
target: {
id: "dialogTitleWords"
}
}
parent.nuResizeWindow(e);
}
You do not have the required permissions to view the files attached to this post.