Hello,
I am experiencing a pb when using this new nice option : nuEditCloseAfterSaveOption doesn't work with run object when set to AllForms.
Scenario :
I have a launch form which contains 2 objects : input date as date that drives the run iframe object below.
1.- If nuEditCloseAfterSave option is set to None,
the record is saved and the application is working as expected.(cf below)
2.- If nuEidtCloseAfterSave option is set to AllForms,
--> the application is running in a loop.
Here is the related exposed solution -->
Any idea how to solve that ?
Many thanks for your help,
Yves
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.
nuEditCloseAfterSave Option Allforms and Run object
-
- Posts: 315
- Joined: Sun Mar 14, 2021 8:48 am
- Location: Geneva
- Has thanked: 87 times
- Been thanked: 11 times
nuEditCloseAfterSave Option Allforms and Run object
You do not have the required permissions to view the files attached to this post.
-
- Posts: 315
- Joined: Sun Mar 14, 2021 8:48 am
- Location: Geneva
- Has thanked: 87 times
- Been thanked: 11 times
Re: nuEditCloseAfterSave Option Allforms and Run object
I have found a solution but I think we have to fix this option globally.
Workaround :
Behind each form you want to have this behavior, on the custom tab, add this code below :
Workaround :
Behind each form you want to have this behavior, on the custom tab, add this code below :
Code: Select all
function nuAfterSave() {
nuGetBreadcrumb(0);
}
-
- Posts: 315
- Joined: Sun Mar 14, 2021 8:48 am
- Location: Geneva
- Has thanked: 87 times
- Been thanked: 11 times
Re: nuEditCloseAfterSave Option Allforms and Run object
It doesn't solve the bug in the product but it is a good workaround.