- To start typing on any field of form or accessing the form before it loads all meta data
- To complain that form is incomplete before it loads all meta data
$(window).load(function () {
waitDialog = SP.UI.ModalDialog.showWaitScreenWithNoClose(' ', 'Please wait...', 110, 280);
setTimeout(function () {
waitDialog.close();
}, 5000);
});
JQuery has to be referenced in Nintex Form. It uses SharePoint's native modal dialog.
No comments:
Post a Comment