Base solution for your next web application
Open Closed

Error Internet Explorer 11 #9256


User avatar
0
ESTeam created

Hi, Does the website with angular 9 no longer support Internet Explorer 11? I am asking why in a previous project with angular 8 it worked in IE11.

My version is Client: v8.7.0.0 [20200623]


5 Answer(s)
  • User Avatar
    0
    maliming created
    Support Team

    hi We will check IE11, thanks for your feedback.

  • User Avatar
    0
    ESTeam created

    Do you have any news?

  • User Avatar
    0
    maliming created
    Support Team

    hi

    Please follow this issue: https://github.com/aspnetzero/aspnet-zero-core/issues/3387 It's planed v9.1

  • User Avatar
    1
    rickfrankel created

    So this was really important to me as a lot of my customers are still on IE 11.

    Here's the situation for me who's still on 8.7 and didn't go up to 9.

    Version 8.7 (may have been earlier).
    Introduced "@swimlane/ngx-charts": "^13.0.2",

    This package depends on d3-array which doesn't support IE11 at all due to this issue (You can see it on src/count.js) https://stackoverflow.com/questions/55814151/why-does-this-function-expect-a-semicolon-only-on-ie11

    Anyway this is known by the ngx-charts crew here. https://github.com/swimlane/ngx-charts/issues/1353

    And the workaround is to go back to version 12 of ngx-charts which doesn't have the dependency on d3-array

    I changed my package.json to "@swimlane/ngx-charts": "^12.1.0",

    Deleted the yarn.lock and deletd all node_modules (probably not required but let's be safe here).

    And I'm back in business with the site working acceptably enough in IE 11.

    Not sure how stable this is but it seems to work.

  • User Avatar
    0
    ismcagdas created
    Support Team

    Thanks a lot @rickfrankel for sharing this.