We have a custom "text" field that will no longer allow editing using the main "Edit" button, but instead can only be edited using the inline edit feature (clicking the pencil).
This is a custom "text" field that was added to the contacts entity. It previously worked so that a user could edit either by clicking the main "Edit" button or by using inline edit.
Recently, its behavior changed so that users can only edit via clicking the pencil (inline edit). I can't think of anything that we changed that would have had this effect, and can't find a way to change it back.
The custom text field is called "nextSteps". Here is the settings entry for that field in the Contact.json file (.../Custom/Resources/metadata/entityDefs/Contact.json).
"nextSteps": {
"type": "text",
"required": false,
"rows": 30,
"lengthOfCut": 255,
"maxLength": null,
"seeMoreDisabled": false,
"readOnly": false,
"tooltip": false,
"isCustom": true
},
Here is the settings entry for the field in the .../clientDefs/Contact.json file under the "dynamicLogic" section.
"nextSteps": {
"visible": null,
"readOnly": null
},
I can't find any settings that will fix this. Any ideas would be appreciated.
This is a custom "text" field that was added to the contacts entity. It previously worked so that a user could edit either by clicking the main "Edit" button or by using inline edit.
Recently, its behavior changed so that users can only edit via clicking the pencil (inline edit). I can't think of anything that we changed that would have had this effect, and can't find a way to change it back.
The custom text field is called "nextSteps". Here is the settings entry for that field in the Contact.json file (.../Custom/Resources/metadata/entityDefs/Contact.json).
"nextSteps": {
"type": "text",
"required": false,
"rows": 30,
"lengthOfCut": 255,
"maxLength": null,
"seeMoreDisabled": false,
"readOnly": false,
"tooltip": false,
"isCustom": true
},
Here is the settings entry for the field in the .../clientDefs/Contact.json file under the "dynamicLogic" section.
"nextSteps": {
"visible": null,
"readOnly": null
},
I can't find any settings that will fix this. Any ideas would be appreciated.
Comment