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!
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.
nuEditCloseAfterSave Option Allforms and Run object
-
- Posts: 347
- Joined: Sun Mar 14, 2021 8:48 am
- Location: Geneva
- Has thanked: 94 times
- Been thanked: 12 times
nuEditCloseAfterSave Option Allforms and Run object
You do not have the required permissions to view the files attached to this post.
-
- Posts: 347
- Joined: Sun Mar 14, 2021 8:48 am
- Location: Geneva
- Has thanked: 94 times
- Been thanked: 12 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: 347
- Joined: Sun Mar 14, 2021 8:48 am
- Location: Geneva
- Has thanked: 94 times
- Been thanked: 12 times
Re: nuEditCloseAfterSave Option Allforms and Run object
It doesn't solve the bug in the product but it is a good workaround.