Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
How to get the values of several fields from another form
-
- Posts: 366
- 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: 4416
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 74 times
- Been thanked: 472 times
- Contact:
-
- Posts: 366
- 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: 4416
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 74 times
- Been thanked: 472 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: 366
- 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: 4416
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 74 times
- Been thanked: 472 times
- Contact:
-
- Posts: 366
- 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: 4416
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 74 times
- Been thanked: 472 times
- Contact:
-
- Posts: 366
- 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.
