View List Color Boxes
This file contains 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
Dark Red: sp-css-backgroundColor-BgDarkRed sp-css-borderColor-WhiteFont sp-css-color-WhiteFont | |
Red: sp-css-backgroundColor-BgRed sp-css-borderColor-WhiteFont sp-css-color-WhiteFont | |
Orange: sp-css-backgroundColor-BgOrange sp-css-borderColor-WhiteFont sp-css-color-WhiteFont | |
Brown: sp-css-backgroundColor-BgBrown sp-css-borderColor-WhiteFont sp-field-fontSizeSmall sp-css-color-WhiteFont | |
Green: sp-css-backgroundColor-BgGreen sp-css-borderColor-WhiteFont sp-field-fontSizeSmall sp-css-color-WhiteFont | |
Teal: sp-css-backgroundColor-BgTeal sp-css-borderColor-WhiteFont sp-field-fontSizeSmall sp-css-color-WhiteFont | |
Dark Green: sp-css-backgroundColor-BgDarkGreen sp-css-borderColor-WhiteFont sp-field-fontSizeSmall sp-css-color-WhiteFont | |
Blue: sp-css-backgroundColor-BgBlue sp-css-borderColor-WhiteFont sp-field-fontSizeSmall sp-css-color-WhiteFont | |
Lavender: sp-css-backgroundColor-BgLavender sp-css-borderColor-WhiteFont sp-field-fontSizeSmall sp-css-color-WhiteFont |
View Binary ASCII Character Collection - Power Apps.txt
This file contains 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
If(CountRows(binaryDigits)=0, | |
ClearCollect(binaryDigits,[]); | |
ForAll(Sequence(8,7,-1), | |
Collect(binaryDigits, { | |
index: Value, | |
worth: Power(2,Value) | |
}) | |
) | |
); |
View Int To Binary - Power Apps.txt
This file contains 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
If(CountRows(binaryDigits)=0, | |
ClearCollect(binaryDigits,[]); | |
ForAll(Sequence(31,30,-1), | |
Collect(binaryDigits, { | |
index: Value, | |
worth: Power(2,Value) | |
}) | |
) | |
); |
View Binary To Int - Power Apps.txt
This file contains 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
ClearCollect(binaryToInt,[]); | |
With({ | |
input: txtFromBinary.Text | |
}, | |
ForAll(Sequence(Len(input)), | |
With({ | |
binaryDigit: Right(Left(input,Len(input)-(Value-1)),1) //Grab the right most digit | |
}, | |
Collect(binaryToInt,{ | |
binaryDigit: binaryDigit, //Not necessary (debug) |
View Taxonomy Conditional Icon
This file contains 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", | |
"width": "100%" | |
}, | |
"children": [ | |
{ |
View Simple Grouping FAQ View Format
This file contains 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/view-formatting.schema.json", | |
"hideColumnHeader": true, | |
"hideSelection": true, | |
"groupProps": { | |
"headerFormatter": { | |
"elmType": "div", | |
"txtContent": "@group.fieldData" | |
} | |
} |
View Title Column.json
This file contains 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
{ | |
"elmType": "div", | |
"children": [ | |
{ | |
"elmType": "button", | |
"customRowAction": { | |
"action": "defaultClick" | |
}, | |
"attributes": { | |
"class": "ms-fontColor-neutralPrimary ms-borderColor-white ms-borderColor-neutralPrimary--hover" |
View UnicornEmojis.json
This file contains 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
{ | |
"elmType": "div", | |
"children": [ | |
{ | |
"elmType": "span", | |
"txtContent": "🦄", | |
"style": { | |
"display": "=if([$Rating] >= 1, 'inherit','none'" | |
} | |
}, |
View Unicorns.json
This file contains 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
{ | |
"elmType": "div", | |
"style": { | |
"fill": "#ffaaaa" | |
}, | |
"children": [ | |
{ | |
"elmType": "svg", | |
"style": { | |
"width": "18px", |
NewerOlder