Hi,
I am starting a workflow which fetches user details from database , as soon as item is added. On save and submit button , I have added a JavaScript as follows :
function fetchOnClientClick()
{
Page_ClientValidate();
if(Page_IsValid)
{
setTimeout(SP.UI.ModalDialog.showWaitScreenWithNoClose('Working on it', 'Please wait, the appraisal is being started...'),10000);
return true;
}
else
{
return false;
}
}
I want to keep showing the "Please wait ..." screen for 10 seconds, but it seem to doesn't work. I referred the following post for JS.
https://community.nintex.com/message/18243?q=display%20wait%20screen%20after%20i