Skip to main content

When blocking the UI, is there a way to unblock the UI if a validation rule fires? I’m currently blocking the UI while a save is in progress and unblock once the save is complete but when a validation rule fires, the save never occurs so the UI remains blocked.


I’d like to avoid using the timeout option because I don’t want the UI blocked for 6 seconds when the save only takes 3 and also don’t want the UI to unblock while the save is still being processed.


Not completely sure, but this should work for you.




Pat’s approach is correct — add an On-Error Action to your Save Action that either (a) Unblocks the UI completely (b) shows a transient message saying that there was an error


Perfect. Thanks, Pat!