Nov 30 2021 02:35 AM - edited Nov 30 2021 02:36 AM
Hi guys,
I just wanted to let you know that by pure chance :) I managed to show/hide list columns based on the permission of the current user. For this, I use the PermMask attribute.
In this example, I only show the column value, if the user permission is higher than 'read' permission:
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "div",
"style": {
"visibility": "=if([$PermMask]>='0xb00','hidden','visible')"
},
"txtContent": "=if([$PermMask]>='0xb00','read-only','more than read')"
}
In a real life use case, I use this to show a "Run flow" button to only those users, who have at least an edit permission for the specific list item.
I hope this helps somebody :)
Sep 03 2022 04:14 AM
Sep 03 2022 05:14 AM - edited Nov 08 2022 12:42 AM
@Ivan_Volkov For SharePoint 2019, you have to use the Abstract Syntax Tree (AST) expressions using operator and operands. Try this:
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v1/column-formatting.schema.json",
"elmType": "div",
"style": {
"visibility": {
"operator": "?",
"operands": [
{
"operator": ">=",
"operands": [
"[$PermMask]",
"0xb00"
]
},
"hidden",
"visible"
]
}
},
"txtContent": {
"operator": "?",
"operands": [
{
"operator": ">=",
"operands": [
"[$PermMask]",
"0xb00"
]
},
"read-only",
"more than read"
]
}
}
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
Sep 03 2022 06:46 AM - edited Sep 03 2022 06:48 AM
Thank you! Unfortunately, it didn't help.
I assumed that the problem is in the json-schemas/sp/v2 it should be json-schemas/sp/v1
It didn't help.
Either I format the column incorrectly, or, maybe, the problem is in "[$PermMask]",
"0xb00" - it differs from Sharepoint Online.
Nov 17 2022 02:55 PM
@Ivan_Volkov did you figure out a way around this? I'm trying to accomplish the same thing.
Nov 18 2022 12:12 AM
May 11 2023 04:15 AM