Hi all,
We have a requirement to have multiple custom fields on the Event table, to be shown on the Marketing Portal's Event Page and child pages e.g. Confirmation, Payment etc. This is to allow the CRM users to create an Event with custom messages in various places.
For example: a custom "Thank you for registering" message could be entered on the Event Information page, which we can then pull through on all Event Registration Confirmation pages that are presented on the portal.
So far, a custom field e.g. "abc_custom_reg_msg" has been added to Events, a new website table configuration has been made, and we can access and display the custom field on the Event page
- API Response: {"customFields":{"abc_custom_reg_msg":"Thanks for joining us!"}
- Code used successfully on Event Page: {{ this.event.customFields.abc_custom_reg_msg }}
Our question is, how do we then access this custom field on the Event Confirmation page? (confirmation.component.html) When we add the same code used on the Event page to the Confirmation page it fails the compile on the DeployToDynamics365Instance.ps1
Do we need to add something else to the confirmation.component.ts to give some context?
Thanks in advance for any help on this one!