Page 1 of 1

Refresh nuTab0

Posted: Mon Jun 03, 2024 12:49 pm
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

Re: Refresh nuTab0

Posted: Mon Jun 03, 2024 1:07 pm
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();

Re: Refresh nuTab0

Posted: Mon Jun 03, 2024 3:34 pm
by Basso
Thanks, it works!!!!!!!!