Forum Discussion
MyoThet
9 years agoIdeator I
I got the solution from the ARAS support. It is ok now.
1. On the server, edit the \Innovator\Client\scripts\promoteDialog.html
2. Find the closeWindow function around line 169.
3. Use setTimeout on the dialogArguments.dialog.close call.
function closeWindow(value) {
if (dialogArguments.dialog) {
setTimeout(function(){ dialogArguments.dialog.close(value); }, 100);
} else {
window.returnValue = value;
window.close();
}
}
4. Edit the Innovator\Client\web.config
a. Increment the filesRevision attribute on the <cachingModule> tag
<cachingModule moduleEnabled="true" filesRevision="2" />