SharePoint Online/O365 List field views column formatting for hyperlink

 {

"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "a",
"txtContent": "View",
"attributes": {
"href": "@currentField",
"target": "_blank"
}
}

dynamically bind the item ID to the URL:

{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "a",
"txtContent": "View",
"attributes": {
"target": "_blank",
"href": "='https://apps.powerapps.com/play/3fdd0765-2de4-44aa-a81c-7c424ff54ca5?Mode=Edit&ID=' + [$ID]"
}
}

Comments

Popular posts from this blog

PowerApps multiselect cascading dropdown and save an item to SharePoint List

Powerapps overcome 2000 item limit from any datasource

Creating SharePoint List with columns and content types using Power Automate Flow