Время создания
Filters
Dashboard_widget
calculated_metrics
Charts
8.3.4
roadmap
Sales_Creatio_enterprise_edition
8.0

Does anyone know if the new Calculated Metrics feature using custom formulas released in 8.3.4 will be coming to other chart types too? This is a very useful and long overdue ability, but currently seems to only be possible to use with single number displaying metric widgets. The roadmap item is titled "Formulas in widgets" and is marked as being released, but is very much incomplete without being able to use formulas in other widgets like bar & line charts.

Percentage of solved cases

Like 1

Like

0 comments
Show all comments

Greetings,

It does not appear that the sales pipeline allows "drill-downs" like other metrics, and graphs do. When I click on one of the categories it does not link to a list showing the records in that category. Is this accurate, or is there a setting a need to turn on.

 

 

Thanks,

Matt

Like 0

Like

1 comments

Hi Matt, 

as I asked myself the same before - to my knowledge the OOTB Sales Pipeline consists of specific hardcoded functionality, for example to allow using the extra fields in the Stage Lookup to customise what the Pipeline shows and in which order.

However for the same reason, it seems like the standard drill-down functionality is not available. If needed, you can instead build a custom pipeline widget and re-name the stages to start with numeric values, as then you can also sort them by Name ("01 Proposal", "02 Presentation") for correct display. Not very elegant, but does the job. 

Best, 
David
 

Show all comments
FreedomUI
Email
Service_Creatio_enterprise_edition
8.0

Hello,

In Classic UI it was possible to customize Subject of new Email by overriding "getEmailTitle" method in SectionActionsDashboard by EmailMessagePublisher package.

Is there a Freedom UI proposed approach how to change Email Subject definition when using EmailMiniPage or EmailFormPage?

Thank you.

Like 1

Like

0 comments
Show all comments
mobile
websocket
message
Studio_Creatio
8.0

Hi, is there any method to establish a WebSocket connection between the Creatio server and the Creatio mobile app (exactly as in the browser version)? At a minimum, the mobile app could poll the server in a loop, but unfortunately there is a problem with that too, since neither setTimeout nor setInterval are available (as I described in this post: https://community.creatio.com/questions/creatio-mobile-app-use-settimeout-or-setinterval).

Like 0

Like

0 comments
Show all comments
mobile
timeout
sleep
delay
Studio_Creatio
8.0

Hi,
is it possible to use setTimeout or setInterval functionality in the remote module for the Creatio Freedom UI mobile app? Unfortunately, when trying to build the project, I get an error:

TS2304: Cannot find name 'setTimeout'

Like 1

Like

2 comments

Hello,

Regarding the TS2304: Cannot find name 'setTimeout' error you’re encountering, there are two possible solutions:

  • Install the @types/node package to include Node.js type definitions.
  • Alternatively, you can use (globalThis as any).setTimeout() in place of setTimeout().

Either approach should resolve the issue.

Hi, thanks for the reply. I already had the @types/node package installed before, but the (globalThis as any).setTimeout workaround did the trick, thank you! Interestingly, it seems like the setTimeout function was added intentionally, since it doesn't exist in JavaScriptCore natively. However, I don't see clearTimeout there.

Show all comments