fiogf49gjkf0d Right, I understand it's overwriting the code. I just wondered if there was some sort of way to retrieve the fields in the OOTB code, so that I didn't have to replicate every field on the account detail form inside of the ApplicationModule.
My other question is that if I use the following code to attempt to add a field to the account edit form, it doesn't appear. Am I overlooking something?
this.registerCustomization('edit', 'account_edit', { at: function(row) { return row.name == 'Type'; }, type: 'insert', where: 'before', value: { label: 'regionField', name: 'Region', type: 'text', } });
|