Last active
March 9, 2022 11:41
-
-
Save anoopt/3076fba40442116552632114c7fd6d33 to your computer and use it in GitHub Desktop.
Confirmation before changing status
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/column-formatting.schema.json", | |
| "elmType": "div", | |
| "style": { | |
| "flex-directon": "row", | |
| "justify-content": "left", | |
| "align-items": "center", | |
| "flex-wrap": "nowrap" | |
| }, | |
| "children": [ | |
| { | |
| "elmType": "div", | |
| "style": { | |
| "display": "=if(([$ApprovalClicked] == false, 'inherit','none')", | |
| "flex-directon": "row", | |
| "justify-content": "left", | |
| "align-items": "center", | |
| "flex-wrap": "wrap" | |
| }, | |
| "children": [ | |
| { | |
| "elmType": "button", | |
| "customRowAction": { | |
| "action": "setValue", | |
| "actionInput": { | |
| "ApprovalClicked": true | |
| } | |
| }, | |
| "attributes": { | |
| "class": "ms-fontColor-themePrimary ms-fontColor-themeDarker--hover" | |
| }, | |
| "style": { | |
| "border": "none", | |
| "background-color": "transparent", | |
| "cursor": "pointer", | |
| "display": "flex", | |
| "flex-directon": "row", | |
| "justify-content": "left", | |
| "align-items": "center", | |
| "flex-wrap": "wrap" | |
| }, | |
| "children": [ | |
| { | |
| "elmType": "span", | |
| "attributes": { | |
| "iconName": "SkypeCircleCheck" | |
| }, | |
| "style": { | |
| "padding": "4px" | |
| } | |
| }, | |
| { | |
| "elmType": "span", | |
| "txtContent": "Approve?", | |
| "style": { | |
| "word-break": "keep-all" | |
| } | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "elmType": "div", | |
| "style": { | |
| "display": "=if(([$ApprovalStatus] == 'Pending' || [$ApprovalStatus] == '') && [$ApprovalClicked] == true, 'inherit','none')", | |
| "flex-directon": "row", | |
| "justify-content": "left", | |
| "align-items": "center", | |
| "flex-wrap": "wrap" | |
| }, | |
| "children": [ | |
| { | |
| "elmType": "span", | |
| "txtContent": "Are you sure?", | |
| "style": { | |
| "padding-left": "5px", | |
| "word-break": "keep-all" | |
| } | |
| }, | |
| { | |
| "elmType": "button", | |
| "customRowAction": { | |
| "action": "setValue", | |
| "actionInput": { | |
| "ApprovalStatus": "Approved", | |
| "ApprovalActionBy": "@me" | |
| } | |
| }, | |
| "attributes": { | |
| "class": "ms-fontColor-themePrimary ms-fontColor-themeDarker--hover" | |
| }, | |
| "style": { | |
| "border": "none", | |
| "background-color": "transparent", | |
| "cursor": "pointer", | |
| "display": "flex", | |
| "flex-directon": "row", | |
| "justify-content": "left", | |
| "align-items": "center", | |
| "flex-wrap": "wrap" | |
| }, | |
| "children": [ | |
| { | |
| "elmType": "span", | |
| "attributes": { | |
| "iconName": "SkypeCircleCheck" | |
| }, | |
| "style": { | |
| "padding": "4px" | |
| } | |
| }, | |
| { | |
| "elmType": "span", | |
| "txtContent": "Yes", | |
| "style": { | |
| "word-break": "keep-all" | |
| } | |
| } | |
| ] | |
| }, | |
| { | |
| "elmType": "button", | |
| "customRowAction": { | |
| "action": "setValue", | |
| "actionInput": { | |
| "ApprovalClicked": false | |
| } | |
| }, | |
| "attributes": { | |
| "class": "ms-fontColor-themePrimary ms-fontColor-themeDarker--hover" | |
| }, | |
| "style": { | |
| "border": "none", | |
| "background-color": "transparent", | |
| "cursor": "pointer", | |
| "display": "flex", | |
| "flex-directon": "row", | |
| "justify-content": "left", | |
| "align-items": "center", | |
| "flex-wrap": "wrap" | |
| }, | |
| "children": [ | |
| { | |
| "elmType": "span", | |
| "attributes": { | |
| "iconName": "Blocked" | |
| }, | |
| "style": { | |
| "padding": "4px" | |
| } | |
| }, | |
| { | |
| "elmType": "span", | |
| "txtContent": "No", | |
| "style": { | |
| "word-break": "keep-all" | |
| } | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "elmType": "div", | |
| "children": [ | |
| { | |
| "elmType": "span", | |
| "txtContent": "='This item is ' + toLowerCase([$ApprovalStatus])", | |
| "style": { | |
| "display": "=if([$ApprovalStatus] == 'Pending' || [$ApprovalStatus] == '' , 'none','inherit')", | |
| "padding-left": "5px", | |
| "word-break": "keep-all" | |
| } | |
| } | |
| ] | |
| } | |
| ] | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

@tecchan1107 - You are a star ๐
This is exactly what I was looking for!
I totally missed looking at the
customCardProps.Thank you! ๐