Forum Discussion
Jimmy_Mc
Jan 09, 2024Copper Contributor
Edit in Gridview has moved
This morning we experienced that Edit in Grid view has moved from 2nd place in the command bar to being hidden after the ... What can I do to move it back? I have followed the information...
- Jan 10, 2024Still don't know why it changed, but thats life in a cloud world. I managed to make it work by adding "sectionType": "Primary", "commandBarProps": { "commands": [ { "key": "editInGridView", "iconName": "EditTable", "primary": false, "position": 1, "hide": false, "sectionType": "Primary", "pinToQuickAccess": true }
Jimmy_Mc
Jan 10, 2024Copper Contributor
Still don't know why it changed, but thats life in a cloud world. I managed to make it work by adding "sectionType": "Primary", "commandBarProps": { "commands": [ { "key": "editInGridView", "iconName": "EditTable", "primary": false, "position": 1, "hide": false, "sectionType": "Primary", "pinToQuickAccess": true }
- sakirkarakayaJan 11, 2024Copper Contributor
Jimmy_Mc Hi Jimmy, where did you add the below, so it worked?
- VictorGTJPJan 11, 2024Copper Contributor
sakirkarakaya the changes are made in the View Menu "All Documents > Format current view > Advanced Mode
{ "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/row-formatting.schema.json", "commandBarProps": { "commands": [ { "key": "editInGridView", "iconName": "EditTable", "primary": false, "position": 1, "hide": false, "sectionType": "Primary" } ] } }
- sakirkarakayaJan 12, 2024Copper Contributor
VictorGTJP Thank you! Worked fine!