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:
-
Edit the
\wfgen\js\portal\app.js
file. -
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; }
-
Refresh your web browser cache.