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.

nuPopup empty

Questions related to using nuBuilder Forte.
Locked
Timo
Posts: 221
Joined: Thu Mar 15, 2018 9:26 pm
Has thanked: 1 time

nuPopup empty

Unread post by Timo »

With nuPopup("FF2", '','') I open a browse form in a popup window, it appears very narrow and I cannot see any columns. It works with an Edit Form but not with a Browse only form.
I entered the function in the console and tried to run it from a button.
popupempty.png
properties.png
You do not have the required permissions to view the files attached to this post.
Timo
Posts: 221
Joined: Thu Mar 15, 2018 9:26 pm
Has thanked: 1 time

Re: nuPopup empty

Unread post by Timo »

I just have done a fresh install. However, the form still doesn't show the columns. What's going wrong?
admin
Site Admin
Posts: 2829
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 30 times

Re: nuPopup empty

Unread post by admin »

Timo,

You need to create some columns for you Browse Form.
browsecolumns.png
nocolumns.png

Steven
You do not have the required permissions to view the files attached to this post.
Timo
Posts: 221
Joined: Thu Mar 15, 2018 9:26 pm
Has thanked: 1 time

Re: nuPopup empty

Unread post by Timo »

Browse columns are there, they just don't appear when I open the form with nuPopup
The form appears normal if run from a button in a normal window
admin
Site Admin
Posts: 2829
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 30 times

Re: nuPopup empty

Unread post by admin »

.
toms
Posts: 785
Joined: Sun Oct 14, 2018 11:25 am

Re: nuPopup empty

Unread post by toms »

The first parameter is the form id, not form code.

Wrong:

Code: Select all

nuPopup('FF2','');
Correct:

Code: Select all

nuPopup('5a6da2f05389af0','');
// replace with your form id (zzzzsys_form.zzzzsys_form_id)
admin
Site Admin
Posts: 2829
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 30 times

Re: nuPopup empty

Unread post by admin »

Timo,

toms has nailed it!

I didn't notice the first parameter.

Steven
Timo
Posts: 221
Joined: Thu Mar 15, 2018 9:26 pm
Has thanked: 1 time

Re: nuPopup empty

Unread post by Timo »

thank you, it opens corretly now :D
admin
Site Admin
Posts: 2829
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 30 times

Re: nuPopup empty

Unread post by admin »

.
Locked