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.
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.
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.
nuSetValue Topic is solved
-
- nuBuilder Team
- Posts: 4581
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 536 times
- Contact:
Re: nuSetValue
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:
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');