Can someone help me with this?
Announcement
Collapse
No announcement yet.
remove edit
Collapse
X
-
Hello
if you want to disable inline edit for one field, you need to create a view for Close Date field and set `inlineEditDisabled: true`
In quote entity -> quoteitems, there is "glyphicon glyphicon-pencil" for the inlineedit. Can I disable/remove only from that entity? If so, which
In quote entity -> quoteitems, there is "glyphicon glyphicon-pencil" for the inlineedit. Can I disable/remove only from that entity? If so, which
if you want to disable all fields in Opportunity, add the row "inlineEditDisabled":true to custom/Espo/Custom/Resources/metadata/clientDefs/Opportunity,json
-
if you want to disable all fields in Opportunity, add the row "inlineEditDisabled":true to custom/Espo/Custom/Resources/metadata/clientDefs/Opportunity,json???
{
"dynamicLogic": {
"fields": {
"contacts": {
"required": {
"conditionGroup": [
{
"type": "equals",
"attribute": "stage",
"value": "Closed Won"
}
]
}
},
"account": {
"required": null
}
}
}
}
Where can I add the command line?
Comment
-
Comment