Hello,
Somebody knows how can I add or remove fields on the provider containers on Minpages?, in my case New Account Minipage, I want to change Primary Contact from List to Lookup...
thanks
Like
3 comments
21:30 Jan 24, 2020
You can just add to your schema AccountMiniPage in DIFF definition:
"operation": "merge",
"name": "PrimaryContactEdit",
"values": {
"layout": {
"colSpan": 18,
"rowSpan": 1,
"column": 0,
"row": 4
},
"dataValueType": this.Terrasoft.DataValueType.LOOKUP,
"contentType": Terrasoft.ContentType.LOOKUP
}
Show all comments