I set nuCloseEditAfterSave setting to "User Forms". t works perfectly on the regular forms, but the form in IFRAME doesn't go back to browse breadcrumb after saving.
I even tried to put in AfterSave php code:
nuAddJavascript("nuOpenPreviousBreadcrumb();");
Still no result. Can you please suggest the solution?
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.
Close Edit after Save in IFRAME
Re: Close Edit after Save in IFRAME
Solved it by adding to the Brows&Edit Custom Code section of the IFRAME form the following text:
Code: Select all
function nuAfterSave() {
nuGetBreadcrumb(0);
}