FYI I do have a marketplace add-on started that does previews for images in Freedom UI file list galleries, inline without needing to click it to open (only image type files show the preview, any other file type will show only the icon as it does normally):
Unfortunately, currently this is not possible with the out-of-the-box solution. If you want to display a certain image for the record, for example company logo for the account record, you can use an Image component.
FYI I do have a marketplace add-on started that does previews for images in Freedom UI file list galleries, inline without needing to click it to open (only image type files show the preview, any other file type will show only the icon as it does normally):
After adding records ,How can I reload a detail list in a Freedom UI page from a task script within a business process, without using the live update feature in the object? Thank you
i got this error message "The type or namespace name 'MsgChannelUtilities' does not exist in the namespace 'Terrasoft.Configuration' (are you missing an assembly reference?"
"The type or namespace name 'MsgChannelUtilities' does not exist in the namespace 'Terrasoft.Configuration' (are you missing an assembly reference?" - this error message will occur in case the business process is created in the assembly package. The only workaround is to uncheck the "Assembly package" property in the package settings or move the process to the regular package.
As for the possibilities and if LiveUpdate is not an option - yes, socket nessage to the client-side and triggering the LoadDataRequest with reload enabled is the only option.
I also encountered this same error, but in my case, it was due to a dependency issue. I resolved it by adding the 'crtBase' package as a dependency in the package containing the business process.
I want to run a function only if the SaveRecordRequest is true. I tried to run await next.handle(request), but it returns undefined even if the record is save is successfully. Here is my code and test result:
I'm trying to use terrasoft.axd to download an image that is loaded as a system setting. I am using the following query string /terrasoft.axd?s=nui-binary-syssetting&r=Glbxxx where Glbxxx is the system setting code. I don't understand why some calls return the correct image and others return a http error 401 (access denied).
The 401 Unauthorized error you are encountering is not related to access rights (Access Denied) but rather to session authentication. This happens because your session expired or was not active at the moment you made the request. As a result, the system does not recognize your authentication and returns a 401 Unauthorized response.
This is not an issue with the terrasoft.axd endpoint itself, but rather an authentication problem. We recommend checking whether your session is still active when making the request and re-authenticating if needed.
For more details, you can refer to the official HTTP 401 documentation: MDN - 401 Unauthorized
I want to implement a functionality on a web page where a Phone Number field is used to retrieve customer data. When a phone number is entered and submitted:
If a matching customer record exists in Creatio, the page should automatically populate with the customer’s details.
If no record is found, a new customer record should be created in Creatio.
Is this functionality achievable? Any guidance would be appreciated!
It is not. The new landing page designer is basically just a visual designer to generate the html. There is an optional feature you can enable to publish the html, which basically uploads the html to a free landing page host (can’t remember which one at the moment)
How can I capture the newly changed field value before saving a record in a crt.SaveRecordRequest in Creatio Freedom UI? Currently, I am getting the old value instead of the new one.
If you are looking into the direct way to get changed attributes values in the SaveRecordRequest - there is none documented on our side. But you can use HandleViewModelAttributeChangeRequest where request has the oldValue and value properties, save the original values of needed attributes into the separate parameters and use these parameters in your task.
Each Widgets calls behind the scene API with one key that is present in the global Area
Present that data in the widget
Now each widget can be consider as Page --
Now how easily create Page which invokes API and dispaly -- if API is returning 10 or so parameter do we need to create manually the page and have items and map items to API return value
In order to display the result of the API call on the widget you will have to create the custom widget and implement the API call for retrieving necessary data in its source code. The key from Global area that will be used for calling the API you can send to your custom widget as a parameter. Also in custom widget configuration you will have to define "items" list that will represent the structure of the data you want to display. When the API call returns the result you will have to parse it and map to the corresponding columns in widget ViewModel.
Currently it's not possible to display API call result in List component on the page.
If you want to display API call result on the page you can add the custom attributes to your page, save the parsed response there and then bind the attributes to the labels on the page to make it visible.
One question for the above method with handler the API call will be made from the client end -- wanted it to be done from server end (this way we can whitelist creatio iP range and only allow calls from those servers only)
I have a business process calling some subprocesses, and it should then open a new record page. but for some reason, the page doesn't open, and the process is left in the running state. does anybody know what can prevent opening a page?
Check the start of the process (select the green start where the process begins) and make sure it does not have the "run in background" option checked.
I've checked that, and it's not checked. I did some further analysis, and the record is created and i can open it, it only doesn't want to open during the process flow. Furthermore, if I run the process under my colleague's credentials, the record does open. So, one would think it's a permission problem, although we both have the same permissions, we both have the system administrator role, and i can open the record 'manually'...