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

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
changelog
change_log
Studio_Creatio
8.0

Hi, is there any time limit set for change log retention? (something similar is already available for process log). 

 Or do I need to manually clear the change log every time? I know there is a business process called "Clear Change Log", which I could use to automate this.  I wanted to check if there is already an out-of-the-box feature available for this before beginning development.

I also noticed that even when a particular record is deleted, its change log remains in Creatio. I understand this is intended behavior to track changes, which is good, but we don’t want it to stay forever.

Thanks

Rishav

Like 0

Like

1 comments

Hello,

At the moment, there is no OOTB functionality for automatic retention or cleanup policy for the Change Log in Creatio.

By default, the change log is expected to be periodically cleared manually. To do so, use the instructions from the following article:
https://academy.creatio.com/docs/8.x/setup-and-administration/administr…

However, we have registered this idea and forwarded it to our R&D team for further review and implementation in future releases.

Have a great day!

Show all comments