Forum Discussion
dKayt
May 07, 2025Copper Contributor
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
- 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]" } ] }
michalkornet
May 11, 2025Iron Contributor
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]"
}
]
}