Last active
April 2, 2025 10:26
-
-
Save tecchan1107/b7da48d1bcf7204d4bc2ed1189655de4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json", | |
| "elmType": "div", | |
| "style": { | |
| "display": "=if(@currentField,'flex','none')", | |
| "flex-wrap": "wrap" | |
| }, | |
| "children": [ | |
| { | |
| "elmType": "div", | |
| "txtContent": "[$__item]", | |
| "forEach": "__item in split(@currentField,';')", | |
| "style": { | |
| "margin": "5px", | |
| "padding": "2px 5px", | |
| "border": "1px solid", | |
| "border-radius": "7px", | |
| "background-color": "=if([$__item]=='IT','pink','')" | |
| } | |
| } | |
| ] | |
| } |
Author
tecchan1107
commented
Apr 2, 2025

Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment