cancel
Showing results for 
Search instead for 
Did you mean: 

Portal having IE Compatibility issue in edge

0 Kudos

Hi,

We have a requirement to use edge and we have AJax standard headerless framework page which have doc mode to edge. When assign to a user, by default document mode is set this to IE=edge.

We have Compatibility issue with IE, all the left navigation, header applications the alignment changed and not working properly but working in IE=5

In JSP of custom header application, I have set the meta data <meta http-equiv="X-UA-Compatible" content="IE=edge:/>, but still it is not working.

Not sure which one is the parent file where I can set the meta tags?

Is there any other way I can set IE=edge for document mode?

Could you please help me with this issue.

Thanks & Regards,

Prasad

0 Kudos

Hi Nick,

The css has been written in .jsp file in our custom app. The css is loading when i see in F12.

whereas in edge the css has not been loading. Please suggest.

Thanks & Regard,

Prasad.

Accepted Solutions (0)

Answers (1)

Answers (1)

nickrankin
Contributor
0 Kudos

Hi Prasad,

You can try:

<meta http-equiv="X-UA-Compatible" content="IE=edge" /> but the Portal framework should handle the document mode correctly itself. NavMode=3 passed to URL for quirks, NavMode=10 passed to url for Standards.

Best regards,

Nick

0 Kudos

Hi Nick,

I have added the below in the respective .jsp but no luck,

<meta http-equiv="X-UA-Compatible" content="IE=edge" />

For e.g we have javascript for browser resize which is not working

and the layout height is getting changed i.e layout height of leftNavPanelContainer also changed.

For e.g the layout height and width is fit to browser and working in IE=5 where as in edge the alignment differs

In these cases how can we resolve. Please suggest.


Thanks & Regards,

Prasad

nickrankin
Contributor
0 Kudos

What is the JavaScript Prasad? Have you checked the code is suitable for use in Standards situation? Also WebDynpro applications do not support browser window resizing or zooming once the application has been rendered.

Best regards,

Nick

0 Kudos

Hi Nick,

The css has been written in .jsp file in our custom app. The css is loading when i see in F12 of IE=5. whereas in edge the css has not been working at all. Please suggest.

Thanks & Regard, Prasad.

nickrankin
Contributor
0 Kudos

Hi Prasad,

How are you injecting CSS into the page, using document hook?

Br,

Nick

0 Kudos

Hi Nick,

We have written included below <head> <meta http-equiv="X-UA-Compatible" content="IE=edge" />

The custom css has been included in .jsp as below,

<style>

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin: 0;padding: 0;border: 0;font-family:Arial,verdana,sans-serif; color:#626262;font-weight:normal;text-decoration:none;}

body {background-color:none;font-size: 11px;}

a {color: #4e87a4;outline:none}

Thanks & Regard, Prasad.