Welcome to the nuBuilder Forums!

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

Refresh nuTab0 Topic is solved

Questions related to customising nuBuilder Forte with JavaScript or PHP.
Post Reply
Basso
Posts: 15
Joined: Sat Mar 30, 2024 9:53 am
Has thanked: 9 times

Refresh nuTab0

Unread post by Basso »

refresh.jpg

Good morning everyone

Could you help me solve the following problem:

I created a "launch form" in which I inserted another form "nuTab0" which refers to a table (circled in red), in the main form I have three input fields and a check button connected to a procedure which checks and insert one or more records in the above table.

My question is the following:
Which command and parameters should I insert into my procedure to refresh only the "nuTab0" (circled in red)
Thanks in advance
Basso
You do not have the required permissions to view the files attached to this post.
kev1n
nuBuilder Team
Posts: 4292
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 71 times
Been thanked: 444 times
Contact:

Re: Refresh nuTab0

Unread post by kev1n »

Hi,

You can refresh it with this code (Replace 'iframe_run_object' with the ID of your iframe/run object):

Code: Select all

const contentWindow = $("#iframe_run_object")[0].contentWindow;
contentWindow.nuGetBreadcrumb();
Basso
Posts: 15
Joined: Sat Mar 30, 2024 9:53 am
Has thanked: 9 times

Re: Refresh nuTab0

Unread post by Basso »

Thanks, it works!!!!!!!!
Post Reply