Start a Conversation

Unsolved

This post is more than 5 years old

288

May 25th, 2011 16:00

AX webclient displays 2 windows with IE7 and IE8

I can't find a way of keeping the same view for the end users. With IE7and higer you get 2 windows if you don't log directly to the login page. The view is correct but it's a problem for the user. If you log directly to the page you get one window but the view is not correct. It looks like a regular browser with the tool bar and so on. I can find anything on microsoft site or firefox. Is there a way to configure the screens? It works great with IE6 but 7 and higher is different. Can you help or do you know anyone with the similar problem?

3 Posts

June 2nd, 2011 14:00

It was answered but not by anyone from this group. Thanks for letting me post.

A developer found this on the EMC site where I don't have access. This was applied on the server level and all seems to working now.

Here is the documentation you requested on the IE 8 fix so we don't forget when it's time to put it into production.

Filed to modify: Default.aspx

Code to modify (addition in red):

function startWebXtender()
         {
            window.open("login.aspx","WebXtenter","resizable=yes,toolbar=no,menubar=no,status=yes,scrollbars=no",true).focus();
            window.opener = this;
            window.open('', '_self', '');
            window.close();
            return false;
         }

No Events found!

Top