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!
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.
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);
}