Fd.messages clear after time out

I have a form in which fd.save(), submits but does not close the form. I know how to change the message "The form has been submitted successfully." I would like to however clear the message after a specified amount of time after successfully updating. Is this possible?

Hello @cwalter2,

You can hide message box using fd._showAlert() function and setTimeout method:

fd.spSaved(function(result) {
    result.RedirectUrl = null;
    setTimeout(function(){ fd._showAlert(); }, 6000);
});
1 Like