jQuery dialogs with Trident engine

element121

New member
*jQuery dialogs with Trident engine allow selects to show through.

Can’t use Chrome engine as there is still the un-resolved bug of the White screens appearing (see seperate post)

So trying to use Trident, however now the jQuery modal dialogs show the selects from the page behind the dialog through the dialog.
Everything else is greyed out.

Don’t have this problem in Chrome, don’t have this problem running in IE9 on localhost, but as soon as it’s compiled the problem is there.

Doesn’t affect functionality, but is certainly visually confusing for the end user.

My understanding was that the (trident) engine compiled in the exe would be the same as running IE locally.

However it’s not, checking the value of “$_SERVER’HTTP_USER_AGENT’]”:
IE9:
*string(215) “Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/5.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C; BRI/2; .NET4.0E)” *

Compiled:
*string(63) “Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)” *

Any solutions to this problem?
 
Last edited:
So it looks like a problem with JQuery (or jquery dialogs) not recognizing the browser’s engine.
By default, if you have IE9, ExeOutput will use the IE9 engine, but from what you posted, your local server makes IE9 work in the compatibility mode.
Try this option:

b72879893c5684d5.png


This will cause IE to work as older versions, probably more compatible with your JS code.
 
Back
Top