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 }
sakirkarakaya
Jan 11, 2024Copper Contributor
Jimmy_Mc Hi Jimmy, where did you add the below, so it worked?
VictorGTJP
Jan 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!
- Nina_S2024Jan 11, 2024Copper Contributor
VictorGTJP Where would I find View Menu "All Documents > Format current view > Advanced Mode? Thank you.
- VictorGTJPJan 11, 2024Copper Contributor