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!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, 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: 4562
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 528 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.