Forum Discussion

dKayt's avatar
dKayt
Copper Contributor
May 07, 2025
Solved

Open PDF documents in a new tab

Hi all, is it possible to open a PDF Document in a new tab using JSON formatting? Best Regarding, dKayt
  • michalkornet's avatar
    May 11, 2025

    Hi dKayt​, try this code -> 

    {
      "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
      "elmType": "a",
      "attributes": {
        "href": "=[$FileRef]",
        "target": "_blank"
      },
      "children": [
        {
          "elmType": "span",
          "txtContent": "[$FileLeafRef]"
        }
      ]
    }

     

Resources