Page 1 of 1

Save edit form without closing

Posted: 30 May 2014
by romslo
The default SharePoint save button has "save and close" behaviour. I need to save data in my main form before creating related items.

Does anyone have a solution that only saves the data, and stays in the edit form? Utimately this would be a JS solution without full page postback.

Re: Save edit form without closing

Posted: 02 Jun 2014
by Dmitry Kozlov
Hello,

Please, activate Buttons feature for your form and place an additional Save button onto your form (save without closing). Put the following JS-code into its OnClick handler:

Code: Select all

fd.sourceFormParam(decodeURIComponent(window.location.href));
return true;
Get more info:
http://spform.com/forms-designer- ... sharepoint