Below code help is to refresh the page after closing the dialog in SharePoint:
When you click Save button in model dialog above code refresh the page. And if you click close/cancel it will do nothing and will return to parent page.
Hope this helps....
Reference:http://sharepoint.stackexchange.com/questions/202829/how-to-refresh-page-after-closing-dialog-form-sharepoint-2013
var options = {
url: 'https://sp2013dev/sites/dev/Shared%20Documents/Forms/EditForm.aspx?ID=9',
title: 'My Title',
allowMaximize: false,
showClose: true,
width: 400,
height: 350,
dialogReturnValueCallback: function(result){
if (result == SP.UI.DialogResult.OK) {
window.location.reload();
}
if (result == SP.UI.DialogResult.cancel) {
//do nothing, modal was closed
}
}
};
SP.SOD.execute('sp.ui.dialog.js', 'SP.UI.ModalDialog.showModalDialog', options);
When you click Save button in model dialog above code refresh the page. And if you click close/cancel it will do nothing and will return to parent page.
Hope this helps....
Reference:http://sharepoint.stackexchange.com/questions/202829/how-to-refresh-page-after-closing-dialog-form-sharepoint-2013
No comments:
Post a Comment