Portal: IE10 in compatibility mode shows a blank page after a web form submit

This is a known issue with Internet Explorer 10 in compatibility mode that has been corrected as of WorkflowGen version 5.6.

For the previous versions, you can apply the following fix:

  1. Edit the \wfgen\js\portal\app.js file.

  2. Insert the following JavaScript code before the code block that starts with sortBy function:

    // For IE10 in compatibility mode
    if (navigator.userAgent.indexOf('Mozilla/4.0 (compatible; MSIE 7.0;') != -1 && navigator.userAgent.indexOf('Trident/6.0') != -1) {
    var fs = window.top.document.getElementsByTagName('frameset');
    for (var i = 0; i < fs.length; i++) fs[i].rows = fs[i].rows;
    }
    
  3. Refresh your web browser cache.