In Creatio, you can manage the communication options and addresses of contacts and accounts on their form pages in the Customer 360 app. Manage the communication options in the top left and manage the addresses on the Contact info tab. Learn more: Manage communication options and addresses in Freedom UI.
Creatio lets you add a custom action menu item to the following communication option elements:
- All communication options.
- Individual communication option.
- Communication option that has a custom display format.
Add a custom action menu item to all communication options
- Open an arbitrary form page. To do this, click
in the top right → Application management → Application Hub → select the app → select the form page. For example, Contacts form page.
-
Add the source code of the Communication options component to the source code of the form page.
- Select the Communication options component in the working area of the Freedom UI Designer.
- Click
in the action panel of the Freedom UI Designer and modify an arbitrary property in the setup area. For example, select the Read-only checkbox in the Editability block.
- Open the source code of the Freedom UI page. To do this, click
in the action panel of the Freedom UI Designer. After you save the page settings, Creatio opens the source code.
- Find the source code that implements the Communication options component and delete the "readonly": true snippet.
- Save the changes.
- Add a localizable string that stores the name of the custom action menu item. Instructions: Add a localizable string.
-
Set up the properties of the custom action menu item in the properties of the optionActions configuration object.
View the example that adds a custom action menu item to all communication options on the contacts form page below.
- Save the changes.
- Clear the cache.
- Refresh the page that contains the modified custom action menu.
As a result, Creatio will add a custom action menu item to all communication options.
Detailed example: Add a custom action menu item to all communication options.
Add a custom action menu item to an individual communication option
General procedure to add a custom action menu item to an individual communication option:
- Find the communication option ID. Read more >>>
- Implement a custom action menu. Read more >>>
Detailed example: Add a custom action menu item to an individual communication option.
1. Find the communication option ID
- Open the Lookups section. To do this, click
in the top right → System setup → Lookups.
- Open the Communication option types lookup.
- Set up the lookup list. To do this, click View → Select fields to display on the lookup toolbar.
- Add the column to the lookup list. To do this, click
→ select the Id column → Select.
- Save the changes.
- View the communication option ID in the Id column.
2. Implement a custom action menu
- Instructions: Add a custom action menu item to all communication options (steps 1–3).
-
Display the custom action menu item for an arbitrary communication option. To do this, bind the visible property to the communication option ID.
View the example that displays the custom action menu item for the Web communication option (6a8ba927-67cc-df11-9b2a-001d60e938c6 ID) on the contacts form page below.
where:
ContactCommunicationOptionsItems is the name of the attribute to bind the communication options using the items field.
ContactCommunicationOptionsDS is the name of the data source to bind communication options.
CommunicationType is the name of the model attribute.
- Save the changes.
- Clear the cache.
- Refresh the page that contains the modified custom action menu.
As a result, Creatio will add a custom action menu item to an individual communication option.
Add a custom action menu item to the communication option that has a custom display format
General procedure to add a custom action menu item to the communication option that has a custom display format:
- Implement a custom template for display format. Read more >>>
- Implement a custom action menu. Read more >>>
Detailed example: Add a custom action menu item to the communication option that has a custom display format.
1. Implement a custom template for display format
- Implement a custom template for display format using a custom Freedom UI component. Instructions: Custom UI component implemented using remote module.
- Change the display format. Instructions: Change the display format (optional).
-
Set up the custom display format.
- Instructions: Add a custom action menu item to all communication options (steps 1–3).
-
Set up the properties of the configuration object that implements the custom display format in the properties of the templates configuration object.
View the example that sets up the custom_display_format display format on the contacts form page below.
- Save the changes.
As a result, the selected communication option will have the custom display format.
2. Implement a custom action menu
- Instructions: Add a custom action menu item to all communication options (steps 1, 3).
- Set up the action menu properties in the tools array of configuration objects.
-
Set up the properties of the action menu item in the menuItems array of configuration objects.
View the example that sets up the custom_display_format display format on the contacts form page below.
- Save the changes.
- Clear the cache.
- Refresh the page that contains the modified custom action menu.
As a result, Creatio will add a custom action menu item to the communication option that has a custom display format.
To implement the example, implement a custom action menu. Read more >>>
Implement a custom action menu
- Open the contact form page. To do this, click
in the top right → Application management → Application Hub → Customer 360 → Contacts form page.
- Add the source code of the Communication options component to the source code of the Contacts form page page. Instructions: Add a custom action menu item to all communication options (step 2).
-
Add a localizable string that stores the name of the custom action menu item.
- Create a localizable string. Instructions: Add a localizable string.
-
Fill out the localizable string parameters.
Parameter Parameter value Code Show Notification_ caption Value Show notification - Save the changes.
-
Set up the properties of the custom action menu item in the properties of the optionActions configuration object.
- Save the changes.
- Clear the cache.
- Refresh the page that contains the modified custom action menu.
View the result
- Open a contact page. For example, Alexander Wilson.
- Make sure Creatio displays the Show notification item in the action menu of all communication options.
- Click
→ Show notification for the Business phone communication option.
As a result, Creatio will display the Notification message message. View result >>>
Source codes
To implement the example:
Step 1: Find the communication option ID. Read more >>>
Step 2: Implement a custom action menu. Read more >>>
1. Find the communication option ID
Instructions: Find the communication option ID.

2. Implement a custom action menu
- Open the contact form page. To do this, click
in the top right → Application management → Application Hub → Customer 360 → Contacts form page.
- Add the source code of the Communication options component to the source code of the Contacts form page page. Instructions: Add a custom action menu item to all communication options (step 2).
-
Add a localizable string that stores the name of the custom action menu item.
- Create a localizable string. Instructions: Add a localizable string.
-
Fill out the localizable string parameters.
Parameter Parameter value Code Show Notification_ caption Value Show notification - Save the changes.
- Set up the properties of the custom action menu item in the properties of the optionActions configuration object.
-
Display the custom action menu item for the Web communication option. To do this, bind the visible property to the communication option that has the 6a8ba927-67cc-df11-9b2a-001d60e938c6 ID.
- Save the changes.
- Clear the cache.
- Refresh the page that contains the modified custom action menu.
View the result
- Open a contact page. For example, Alexander Wilson.
- Make sure Creatio displays the Show notification item only in the action menu of the Web communication option.
- Click Add communication option → Web →
→ Show notification for the Web communication option.
As a result, Creatio will display the Notification message message. View result >>>
Source codes
To implement the example:
Step 1: Implement a custom template for display format. Read more >>>
Step 2: Implement a custom action menu. Read more >>>
1. Implement a custom template for display format
- Implement a custom template for display format using a custom Freedom UI component. Instructions: Custom UI component implemented using remote module.
-
Change the display format.
- Open the Lookups section. To do this, click
in the top right → System setup → Lookups.
- Open the Communication option types lookup.
- Instructions: Change the display format (optional) (steps 1–3).
-
Change the Display format column of the Home phone communication option from "phone" to "home_phone."
- Open the Lookups section. To do this, click
-
Set up the custom display format.
- Open the contact form page. To do this, click
in the top right → Application management → Application Hub → Customer 360 → Contacts form page.
- Add the source code of the Communication options component to the source code of the Contacts form page page. Instructions: Add a custom action menu item to all communication options (step 2).
-
Add a localizable string that stores the name of the custom action menu item.
- Create a localizable string. Instructions: Add a localizable string.
-
Fill out the localizable string parameters.
Parameter Parameter value Code Show Notification_ caption Value Show notification - Save the changes.
-
Set up the properties of the home_phone configuration object in the properties of the templates configuration object.
- Save the changes.
- Open the contact form page. To do this, click
As a result, the Home phone communication option will have the home_phone display format.

2. Implement a custom action menu
- Open the contact form page. To do this, click
in the top right → Application management → Application Hub → Customer 360 → Contacts form page.
- Set up the action menu properties in the tools array of configuration objects.
-
Set up the properties of the action menu item in the menuItems array of configuration objects.
- Save the changes.
- Clear the cache.
- Refresh the page that contains the modified custom action menu.
View the result
- Open a contact page. For example, Alexander Wilson.
- Make sure Creatio displays the Show notification item in the action menu of all communication options.
- Add the Home phone communication option. To do this, click Add communication option → Phone → Home phone.
- Click
→ Show notification for the Home phone communication option.
As a result, Creatio will display the Notification message message. View result >>>