0

I am using ag grid in my angular application, below is the version in package.json file.

  "ag-grid-angular": "^20.2.0",
  "ag-grid-community": "^20.2.0",
  "ag-grid-enterprise": "^20.2.0", 

I see a strange behavior in Edge version 42.17134.1.1, as one of the cell value (xyz Jul 2019 120.000 abc) in Edge displays hyperlink.

the value displays fine in other browsers. Why this strange behavior in Edge?

What is the solution to fix this issue in angular/ag-grid?

TylerH
  • 20,799
  • 66
  • 75
  • 101
shreyansh
  • 1,637
  • 4
  • 26
  • 46

1 Answers1

3

That's the behavior of Edge browser. It will be displayed even if you don't display it in .

You can get rid of it by adding this meta tag in the header of your pages.

<meta name="format-detection" content="telephone=no">

Reference: Remove Microsoft Edge's phone number styling

Paritosh
  • 11,144
  • 5
  • 56
  • 74