Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

Pop-Up: Width is too small

Questions related to using nuBuilder Forte.
Post Reply
oli
Posts: 118
Joined: Sat Mar 20, 2021 3:22 pm
Has thanked: 4 times

Pop-Up: Width is too small

Unread post by oli »

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.
Screenshot 2022-01-03 185430.jpg
Is there a possibility to change the width of the windows?

BR, Oli
You do not have the required permissions to view the files attached to this post.
kev1n
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

Unread post by kev1n »

What you could do is maximise the popup window by code.

JS in the popup's custom code:

Code: Select all

if (nuIsIframe()) {
    var e = {
        target: {
            id: "dialogTitleWords"
        }
    }
    parent.nuResizeWindow(e);
}
js_resize.jpg
You do not have the required permissions to view the files attached to this post.
oli
Posts: 118
Joined: Sat Mar 20, 2021 3:22 pm
Has thanked: 4 times

Re: Pop-Up: Width is too small

Unread post by oli »

Perfect, thanks a lot!
Works great.
BR, Oli
Post Reply