Forum Discussion
jsantos489
May 03, 2022Copper Contributor
Inline Editing On Person Fields
Hi guys, I am trying to implement the Inline Editing on a Person/Group Field. I am using this condition. {
"elmType": "div",
"inlineEditField": "[$Pessoa]",
"txtContent": "@currentField"...
jhersko
Aug 28, 2022Copper Contributor
jsantos489 Give this a try.
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "div",
"inlineEditField": "[$fieldName]",
"txtContent": "[$FieldName.email]"
}
mstevens22
Jul 20, 2023Copper Contributor
- SvenSieverdingJul 20, 2023Bronze Contributor
mstevens22
in that case you can use the "title" property instead of the "email" property{ "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json", "elmType": "div", "inlineEditField": "@currentField", "txtContent": "@currentField.title" }