Hi there,

I made a button that call ProcessModuleUtilities on click. Once clicked, the callback is called and a BodyMask is shown but never hidden.

Here is the button :

			{
				"operation": "insert",
				"name": "GetAccountBtn",
				"parentName": "LeftContainer",
				"propertyName": "items",
				...

MoreLess

Like 1

Like

2 comments
Best reply

When you use a callback with ProcessModuleUtilities, you're responsible for clearing the mask in the callback function.  Add MaskHelpe...MoreLess

Show all comments (1)

Hi Community,

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.

Any idea on how can I achieve this requirement?

Thanks in advance.

Best Regards,

Pedro Pinheiro

Like 1

Like

4 comments

Hello Pedro,

Unfortunately, your task can not be achieved using the basic logic of Creatio. There is no possibility to generate ZIP files from...MoreLess

Show all comments (3)

Hello community,

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

"Stage": {
				dependencies: [
					...

MoreLess

Like 0

Like

1 comments
Best reply

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

Show all comments

Hello community,

I want to catch the step change event of an entity in the client side.

Does Creatio offer a built-in method that implements this functionality that I can override?

Like 0

Like

1 comments

Hello!

Thank you for your question. Could you please elaborate more on your business task? Would you like to receive a notification each time...MoreLess

Show all comments

Hello Community,

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

Like 0

Like

1 comments
Best reply

Hello User 1997,

Similar filter example was already provided here with the only difference in the section name (there it was the Projects section...MoreLess

Hello User 1997,

Similar filter example was already provided here with the only difference in the section name (there it was the Projects section...MoreLess

Show all comments

Hi community,

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;





while...MoreLess

Like 0

Like

5 comments
Best reply

Hi everyone,

I discovered that the problem with the cached setting was the type of it. To fix the issue I simply had to change the type fro...MoreLess

Show all comments (4)

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

Like 0

Like

0 comments
Show all comments

Hello community,



Can you please advise me how to run the server code (C#) from a client page (JS).

The business process has a delay when launching, so this method is not the best solution in my case.

Thank you in advance.

Mariia

Like 0

Like

2 comments
Best reply

Hello,

Please check the following link https://academy.creatio.com/docs/developer/back-end_development/configu…;



Best Regards,

Tetiana Bakai

Show all comments (1)

Hello community,

Could you please advise me how to send a message from a page to a business process.

The idea is the next: the process starts and sends a message to the client with a confirmation question and waits for the message to continue.

The message will be generated on the client depending on the button pressed on confirmation pop-up window.

Thank you in advance for your ideas.

Best regards,

Mariia

Like 0

Like

1 comments

Hello Mariia,

I'm afraid there is no way to send a message from the client to some specific process log record (since ProcessEngineService...MoreLess

Show all comments

Hi Community,

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.

Pressing the  "Merge Quote" button...MoreLess

Like 1

Like

1 comments

Hello Pedro,

Creatio works with collections if it's needed to process such data but not to display it. You can pass items to sub_process o...MoreLess

Show all comments