Skip to content

Instantly share code, notes, and snippets.

@mdnmdn
Created May 16, 2014 09:18
Show Gist options
  • Save mdnmdn/f97fb92c6f35a20a519a to your computer and use it in GitHub Desktop.
Save mdnmdn/f97fb92c6f35a20a519a to your computer and use it in GitHub Desktop.
Sharepoint 2013 JS waiting dialog
var dialog = null;
function showDialog(){
SP.SOD.loadMultiple(['sp.ui.dialog.js','strings.js'], function(){
dialog = SP.UI.ModalDialog.showWaitScreenWithNoClose("Please wait...", 'Loading data', null, null);
});
}
function hideDialog(){
if (dialog) dialog.close()
dialog = null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment