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.
Open -> Add record -> Save and Close -> Add to Lookup
-
- Posts: 17
- Joined: Sat Jan 06, 2018 5:45 pm
Open -> Add record -> Save and Close -> Add to Lookup
I have a lookup field with which I open a form in a new window and add a new entry.
How can i save the edit form, close the popup window and add automatically to the lookup field?
Thanks
Ovidiu
How can i save the edit form, close the popup window and add automatically to the lookup field?
Thanks
Ovidiu
You do not have the required permissions to view the files attached to this post.
Re: Open -> Add record -> Save and Close -> Add to Lookup
tovidiu,
It's on the list of things to do.
Steven
It's on the list of things to do.
Steven
Re: Open -> Add record -> Save and Close -> Add to Lookup
tovidiu,
This feature is now in the latest commit in Github.
Steven
This feature is now in the latest commit in Github.
Steven
-
- Posts: 17
- Joined: Sat Jan 06, 2018 5:45 pm
Re: Open -> Add record -> Save and Close -> Add to Lookup
Can I ask the opposite question? How to make the popup form not close after adding a new element.
As an example, in places of poor Internet reception, it is best to put the checkboxes next to the list and select all the elements from the table at once. But the ability to add new records should remain.
As an example, in places of poor Internet reception, it is best to put the checkboxes next to the list and select all the elements from the table at once. But the ability to add new records should remain.
-
- nuBuilder Team
- Posts: 4297
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 444 times
- Contact:
Re: Open -> Add record -> Save and Close -> Add to Lookup
Hi selector,
The easiest way to add a number of records at a time to a table is through a BrowesEdit Form before you ask a Lookup to Choose just one record.
You could do this by adding a Button that goes to that BrowesEdit, placing it near the Lookup, and making its title something like
Add Multiple Records For this Lookup.
Steven
The easiest way to add a number of records at a time to a table is through a BrowesEdit Form before you ask a Lookup to Choose just one record.
You could do this by adding a Button that goes to that BrowesEdit, placing it near the Lookup, and making its title something like
Add Multiple Records For this Lookup.
Steven
A short post is a good post.
-
- nuBuilder Team
- Posts: 4297
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 444 times
- Contact:
Re: Open -> Add record -> Save and Close -> Add to Lookup
If this empty function is added in Setup -> Header, the popup will no longer close.
Code: Select all
function nuAddedByLookup(){
// do nothing - don't close the popup
}
Re: Open -> Add record -> Save and Close -> Add to Lookup
Thank youkev1n wrote: ↑Thu Jun 09, 2022 4:40 pm If this empty function is added in Setup -> Header, the popup will no longer close.
Code: Select all
function nuAddedByLookup(){ // do nothing - don't close the popup }