Working on a browser app for client.
Basically, their (3rd party) application allows them to specify a start page URL.
My app is specified as the 3rd party URL.
They don't believe that they can change the browser that the application is using, so we're stuck with whatever version of IE is installed on the server.
On their dev server, we've got IE11.
When it runs within their application, it 'thinks' it's IE7 as demonstrated by setting
https://www.cyscape.com/showbrow.asp
as the start page URL
So I've managed to get round of most of the issues by adding:
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
However, one issue remains, and I'm not convinced it's even a compatibility thing, as when I run IE11 in 7 compatibility mode I don't get the same issue.
I've got a (.net) list box <asp:ListBox> which is rendered as <select size="12" multiple="multiple">
I've got some very basic styling - width (which may possibly be relevant, although removing it doesn't appear to help)
The problem:
WHen running in the application, scrolling seems to fire the blur event. But only when you've selected something - so if you simply scroll up and down, all is dandy. If you click the first item, then scroll (for example, to multi select), the blur event fires.
This is making it virtually unusable in the way they need to use it. Have played with it, but have limited ability to install stuff on their servers, and I can't run their application on mine. Works beautifully in the standalone browser.
Any ideas?
Basically, their (3rd party) application allows them to specify a start page URL.
My app is specified as the 3rd party URL.
They don't believe that they can change the browser that the application is using, so we're stuck with whatever version of IE is installed on the server.
On their dev server, we've got IE11.
When it runs within their application, it 'thinks' it's IE7 as demonstrated by setting
https://www.cyscape.com/showbrow.asp
as the start page URL
So I've managed to get round of most of the issues by adding:
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
However, one issue remains, and I'm not convinced it's even a compatibility thing, as when I run IE11 in 7 compatibility mode I don't get the same issue.
I've got a (.net) list box <asp:ListBox> which is rendered as <select size="12" multiple="multiple">
I've got some very basic styling - width (which may possibly be relevant, although removing it doesn't appear to help)
The problem:
WHen running in the application, scrolling seems to fire the blur event. But only when you've selected something - so if you simply scroll up and down, all is dandy. If you click the first item, then scroll (for example, to multi select), the blur event fires.
This is making it virtually unusable in the way they need to use it. Have played with it, but have limited ability to install stuff on their servers, and I can't run their application on mine. Works beautifully in the standalone browser.
Any ideas?
Comment