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.
How to get the values of several fields from another form
-
- Posts: 377
- Joined: Sat Apr 11, 2020 12:03 am
- Has thanked: 3 times
- Been thanked: 4 times
- Contact:
How to get the values of several fields from another form
How to get the values of several fields from another form with one choice in form-edit?
-
- nuBuilder Team
- Posts: 4562
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 528 times
- Contact:
-
- Posts: 377
- Joined: Sat Apr 11, 2020 12:03 am
- Has thanked: 3 times
- Been thanked: 4 times
- Contact:
Re: How to get the values of several fields from another f
yes,but I have to access these fields in calckev1n wrote:Are you using a Lookup Field ?
Last edited by kknm on Mon May 25, 2020 12:23 pm, edited 1 time in total.
-
- nuBuilder Team
- Posts: 4562
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 528 times
- Contact:
Re: How to get the values of several fields from another f
In the After Save event, use nuSetFormValue()
https://wiki.nubuilder.cloud/ ... tFormValue
https://wiki.nubuilder.cloud/ ... tFormValue
-
- Posts: 377
- Joined: Sat Apr 11, 2020 12:03 am
- Has thanked: 3 times
- Been thanked: 4 times
- Contact:
Re: How to get the values of several fields from another f
This does not work. It works like this:kev1n wrote:In the After Save event, use nuSetFormValue()
https://wiki.nubuilder.cloud/ ... tFormValue
LookUp - After Browse:
Code: Select all
$lu = nuLookupRecord ();
nuSetFormValue ('inv_address1', $lu-> cus_address1);
-
- nuBuilder Team
- Posts: 4562
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 528 times
- Contact:
-
- Posts: 377
- Joined: Sat Apr 11, 2020 12:03 am
- Has thanked: 3 times
- Been thanked: 4 times
- Contact:
Re: How to get the values of several fields from another f
Works on bookmark:kev1n wrote:Does it work or not?
LookUp - After Browse:
-
- nuBuilder Team
- Posts: 4562
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 528 times
- Contact:
-
- Posts: 377
- Joined: Sat Apr 11, 2020 12:03 am
- Has thanked: 3 times
- Been thanked: 4 times
- Contact:
Re: How to get the values of several fields from another f
Thank ! Excuse me, because I ask a lot of questions.kev1n wrote:Yes sorry, I meant After Browse.
