I’ve this requirement where a specific user must run a specific Process. In this process, there should be a set of tasks that must gather all the attachments of the current record and generate a ZIP file with these attachments. Furthermore, this process should also download the ZIP file to the user’s computer.
I am using perform task inside section cases. The task updates the entity stage. After the stage is updated from the task I want to catch this event and reload the entity from the client side. I tried using the following approach but nothing happens
Since the automatic changing of a stage happens outside of the context of a page, you won't receive any events from the change on the page itself...MoreLess
Since the automatic changing of a stage happens outside of the context of a page, you won't receive any events from the change on the page itself...MoreLess
I am trying to create a lookup filter in client side based on the values of a detail. The case is as follows: I want to display within the application only the contacts which are in the detail UsrApplicationAssignedTo where the application id must be equal to the id of the current...MoreLess
I'm trying to read the value of a custom system setting in creatio from the client-side, but I noticed that even if my setting has the flag "Cached" it results undefined when I try to get the value using this code:
var test = Terrasoft.SysSettings.cachedSettings.UsrSysSettingTest;
I created a custom package working in file system mode on my PC.
The package is set to be "Compiled into a separate assembly".
When I compile it (selecting "Compile" in the dropdown menu near the package name and selecting "Compile all" in the Actions button) I see a popup error reporting syntax errors...MoreLess
As Tetiana mentioned, how this is typically done in Creatio is by creating a configuration web service that you call from your client-side js...MoreLess
I have this situation where I need to excute some process through client side. While executing this process I want to pass a collection of ids to one of the process parameters. These ids are the Quotes that I multi-selected in the image bellow.