Forum Discussion
Narender
May 28, 2022Copper Contributor
SharePoint list Form footer formatting with JSON
Hi I am formatting sharePoint List with JSON . I want Add to links to the footer . I am new to JSON. so i am able to add One link with JSON like below code. How can i add another link to the for...
- May 29, 2022
Narender I think this is what you are looking for - let me know if it works for you.
{ "$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json", "elmType": "div", "style": { "display": "flex", "flex-direction": "column", "justify-content": "flex-start", "align-items": "flex-start" }, "children": [ { "elmType": "a", "txtContent": "Link A", "attributes": { "target": "_blank", "href": "https://microsoft.com/" } }, { "elmType": "a", "txtContent": "Link B", "attributes": { "target": "_blank", "href": "https://microsoft.com" } } ] }
May 30, 2022
RobElliott Rob, do you know how you would add spaces between those links? I was playing with it earlier and couldn’t get them in there.
RobElliott
May 30, 2022Silver Contributor
You could lay them out across the footer with space between them by using display:flex as you originally had it but then change the justify-content to "justify-content":"space-between"
"style": {
"display": "flex",
"justify-content": "space-between"
}
"style": {
"display": "flex",
"justify-content": "space-between"
}
- NarenderMay 31, 2022Copper Contributor
Can we inset link in SharePoint List form body like below with JSON. I need three section in form
first will be "Please tag event name and Year" (Link should beside).
second section : details and third will be Others
Please need help in this please give me codes if possible . i am new to JSON formattingThanks for the help
- May 30, 2022Thank you!!