Forum Discussion
Murali_Kurva
Jul 14, 2023Copper Contributor
Hide "Folder" and "Template" under "Upload" on SharePoint document library
Hi Experts, We need to hide "Folders" and "Template" fields under "Upload" on SharePoint document library on SP online. Only Files option need visible when click on "Upload". By editing p...
- Jul 16, 2023
This should do it 🙂
{ "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/row-formatting.schema.json", "commandBarProps": { "commands": [ { "key": "uploadTemplate", "hide": true }, { "key": "uploadFolder", "hide": true } ] } }
Jul 16, 2023
This should do it 🙂
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/row-formatting.schema.json",
"commandBarProps": {
"commands": [
{
"key": "uploadTemplate",
"hide": true
},
{
"key": "uploadFolder",
"hide": true
}
]
}
}
- Murali_KurvaJul 17, 2023Copper ContributorThank you, it working as we expected.