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.
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.
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.
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?
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).
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:
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.