Dear community,
I need to add a lot of custom fields (40 and more fields) to account section
I would prefer to create a custom section (named administration) with all these fields.
The relationship between one account record and the administration data is 1:1.
How can I show the "administration data section" in the account page?
I can link administration section as a detail, but I don't know how can I hide the action add when a record exists in the administration section
Like
2 comments
22:07 Mar 08, 2021
It is better to add this record automaticaly in a Process when new Account is added, so user will be able only to edit it.
And then you can add methods to the detail schema:
getDataImportMenuItemVisible: function() {
return false;
},
getDeleteRecordMenuItem: function() {
return false;
},
getCopyRecordMenuItem: function() {
return false;
},
getAddRecordButtonVisible: function(){
return false;
}
Show all comments