Page 1 of 1

Pop-Up: Width is too small

Posted: Mon Jan 03, 2022 6:56 pm
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

Re: Pop-Up: Width is too small

Posted: Mon Jan 03, 2022 8:37 pm
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

Re: Pop-Up: Width is too small

Posted: Tue Jan 04, 2022 4:12 pm
by oli
Perfect, thanks a lot!
Works great.
BR, Oli