Hi,
I am trying to make accountRole (Title) as enum/drop down while linking an account.
This didn't work...
entityDefs/Contact.json
I haven't made any changes in crm:views/contact/fields/account-role
I am trying to make accountRole (Title) as enum/drop down while linking an account.
This didn't work...
entityDefs/Contact.json
Code:
{ "fields": { "accountRole": { "type": "enum", "required": true, "options": [ "", "Type-A", "Type-B", "Type-C", "Type-D" ], "notStorable": true, "layoutDetailDisabled": true, "layoutMassUpdateDisabled": true, "layoutFiltersDisabled": true, "exportDisabled": true, "importDisabled": true, "view": "crm:views/contact/fields/account-role" } } }
Comment