Skip to main content

D365 portal Error: Incorrect contents fetched, please reload

 The error is coming from your custom java script when you click submit button. I my case i was using webFormClientValidate but forgot to return true because it always expect return true if not false.

 window.webFormClientValidate = function () {  
      // your validation logic  
       return true;  
 };  

For your case please check your custom java script code and find out that you miss anything to return or not.

Comments