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

Is there an update on the release of this? Seems it has been on roadmap for a while but still does not appear in 8.3.2.

As a workaround does anyone know if it is possible to open an old Classic UI pivot dashboard from a button click on a Freedom UI section/page?

Like 2

Like

2 comments
Best reply

On the roadmap pivot tables currently shows that it's slated for Q12026, so hopefully soon!

As for alternatives for Freedom UI, there is this in the marketplace (not free). It's likely possible to use this method to load in a classic pivot list component, but I've not tried.

Ryan

On the roadmap pivot tables currently shows that it's slated for Q12026, so hopefully soon!

As for alternatives for Freedom UI, there is this in the marketplace (not free). It's likely possible to use this method to load in a classic pivot list component, but I've not tried.

Ryan

thanks Ryan. $70 per month for that so guess will have to hold fire until Creatio release this function.

Show all comments

While trying to create a new record for a custom object through a section list page button, the auto number field for the record gets incremented every time the new form page is loaded.

Similarly, if I switch to expanded view from compact view as well this happens.

Is this an expected behavior. Is there anything that could be done to make sure that the auto number increments only when the record is saved to database and not every time the page loads.

Like 0

Like

1 comments

This is expected behavior for how the auto-number fields work. 

If you're after a true sequential number without gaps, then you'd need to implement something custom to accomplish that. For a no-code approach, you could have a process with a signal of record added that gets a record count and then updates the newly added record with the result.

Ryan

Show all comments
#FreedomUI
#Printable
#lookup
#filter
Sales_Creatio
8.0

We have implemented a lookup-based filtering mechanism for Printables in Classic UI. The behavior is as follows:

  • A lookup field (e.g., Stage) is used as a filter.
  • Based on the selected lookup value, only the related Printables are shown.
  • For example, if there are 15 Printables in total and the user selects the “To Be Signed” stage, the system dynamically filters and shows only the 2–4 Printables that are relevant to the “To Be Signed” attachments.

This works correctly in Classic UI.

Now our customer has migrated to Freedom UI, and we need to implement the same functionality there. We have searched both Academy and Community, but all available examples of Printable filtering appear to be limited to Classic UI. We could not find any reference or implementation guidance for achieving lookup-driven Printable filtering in Freedom UI.

Has anyone implemented a similar scenario in Freedom UI, where Printables are dynamically filtered based on a selected lookup value or stage?

Any guidance, architectural approach, or sample implementation (Client schema, DataSource filtering, or UI Handler logic) would be highly appreciated.

Like 0

Like

0 comments
Show all comments

I want to know How can I move or transfer bulk emails to one site to another along with its design.

Like 0

Like

1 comments

Hello,

To transfer bulk email templates from one Creatio site to another, please follow these steps:

1. Add the relevant email templates to a custom package:
- Bind the required templates to the package in the configuration section.
- Ensure all columns are included in the data binding (including multilingual content and images, if applicable by binding EmailTemplateLang and SysImage data).
2. Export the package with data:
- Use the package export functionality, making sure to select the option to include data.
3. Install the exported package on your target environment:
- Import the package via the "Installed applications" section and confirm that data is installed.

This process reliably transfers bulk email templates between Creatio environments. If you encounter any specific errors during this migration or need further clarification about package/data binding, please provide details so we can assist you further.
 

Show all comments
Creatio_File_API
IFile
EntityFileLocator
MinIO
Content-Type
Marketing_Creatio
8.0

Hello everyone

We are integrating Creatio File management API with MinIO (S3-compatible object storage). The files are successfully uploaded to MinIO, but the object metadata in MinIO has an incorrect Content-Type (it ends up as text/plain). This becomes a real issue in the browser - when opening the direct MinIO object URL, the browser does not render images (PNG) because MinIO returns:
Content-Type: text/plain
X-Content-Type-Options: nosniff

What we do in Creatio:

IFileFactory fileFactory = UserConnection.GetFileFactory();
var fileLocator = new EntityFileLocator("PromotionFile", imageId);
IFile file = fileFactory.Create(fileLocator);
file.Name = fileName;
file.SetAttribute("PromotionId", promotionId);
file.Save();
fileStream.Position = 0;
file.Write(fileStream, FileWriteOptions.SinglePart);

Expected behavior
When uploading a PNG (or any file), MinIO should store and return the correct Content-Type (e.g. image/png) so that direct browser access works.

Actual behavior
The uploaded object in MinIO still has wrong Content-Type (text/plain), as if Creatio ignores the file extension.

Questions
Does Creatio File API support setting the Content-Type for the underlying storage object especially for MinIO?

Like 0

Like

0 comments
Show all comments