Время создания
Filters

Hi Community!

Somebody knows how to do a filter in this field for the EmailComposer component?

Like 0

Like

1 comments

Hello,

Unfortunately, at the moment, it is not possible to filter the "To" field in the Message composer element.

However, our development team already has a task to review and add this functionality in future application releases.

Thank you for helping us to improve our product.

Show all comments

where can we find ApiBaseUrl, to connect an external application via Oauth 2.0

Like 0

Like

1 comments

Hi Shivanshi, 

In the system designer menu, find OAuth integrated applications. You need to configure you app in that section. 

https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platform/integrations-and-api/authentication/oauth-2-0-authorization/manage-oauth-integrations

Show all comments
custom
component

Hello everyone,

I am trying to create a custom Freedom UI component by following the instructions from the official Creatio documentation:
https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platform/front-end-development/freedom-ui/remote-module/implement-a-remote-module/examples/implement-a-remote-module

However, every time I try to run it, I get the following error in the browser console:

installHook.js:1 ERROR Error: Remote entry with name 'usr.sdk_remote_module_package_tf' does not exist

Could you please advise what I should pay special attention to when configuring a remote module and how to properly look for the root cause of this error?
Are there any common pitfalls related to package naming, module registration, or build/deployment steps that might lead to this issue?

Any hints or troubleshooting tips would be greatly appreciated.

 

I have attached a file with my project for reference.

 

 

Best regards,

Tomasz

File attachments
Like 0

Like

0 comments
Show all comments
Is_it_possible_to_create_a_multi-select_lookup_from_entity_metadata_in_Freedom_UI?

Hello ,

I am working on a Freedom UI modal page where I need to display entity schema metadata (field list) and allow the user to select two or more fields from that metadata.

Requirement

  • Source data is entity metadata (not business records)
  • User should be able to select multiple fields
  • Selection should be limited strictly to the metadata values
  • The control should remain interactive (not fully disabled)

What I have tried

  • crt.DataGrid with multi-row selection (facing stability/UX limitations)
  • Custom HTML / repeater components (not supported in Freedom UI)
  • crt.Input with control: "multiSelect"
    • readonly: true → control becomes fully locked
    • enabled: false → selection not possible

Questions

  1. Is it supported to create a multi-select lookup or multi-select input whose options come from entity schema metadata in Freedom UI?
  2. What is the recommended pattern to:
    • prevent free text entry
    • allow only selection from predefined metadata values
    • support selecting multiple values
  3. Are there any OOTB components or best practices for metadata-driven selection in Freedom UI?

Any guidance or recommended approach would be greatly appreciated.

Thanks in advance!

Like 1

Like

0 comments
Show all comments

Currently, when users click on the Email or Phone fields on the Contact page, the browser triggers its default behavior (launching the default mail client or calling application).

Is there a recommended way in Creatio (configuration, Freedom UI, or CSS/JS customization) to disable this on-click behavior so the fields are displayed as plain text instead of hyperlinks?

Like 0

Like

1 comments

Probably the only way to do that currently is with some CSS. The following CSS will work for that on the contact page: 

crt-communication-options#ContactCommunicationOptions a {
    pointer-events: none !important;
    cursor: initial !important;
    color: initial !important;
    text-decoration: none !important;
}

Ryan

Show all comments