Page 1 of 1

nuSetValue

Posted: Mon Apr 28, 2025 9:29 am
by Basso
Good Morning,

apologies for my poor English and limited it knowledge.

I try to create a FORM containind a RUN browser object linked to a table and a one input text object.
I need to overwrite a text object in the main form (circled in red) whenever i delete one of the record in the browser list.

I tried using JS function AfterDelete() with the command nuSetValue('text_object_name','value'); , but nothing happens
Consulting the browser console, I receive this worning: " Object does not exist."

could you help me.

Thank you in advance.

Re: nuSetValue

Posted: Mon Apr 28, 2025 10:01 am
by kev1n
Hi,

Since the Text object is located on the main form and you're trying to access it from within the embedded iframe form, you could try:

Code: Select all

parent.nuSetValue('your_object_id,'value');

Re: nuSetValue (Solved)

Posted: Mon Apr 28, 2025 10:13 am
by Basso
Tank you Kev1n,
Worked perfectly