Время создания
Filters
FreedomUI
list
detail
Studio_Creatio
8.0

Hello, community!

Could you please advise how to change the height of an Expanded list (detail) in Freedom UI? Is it possible to make the vertical size flexible depending on the number of rows?

Like 0

Like

0 comments
Show all comments

Hello everyone,
When I'm creating a report in Word and I include a table related to the main object, if there's more than one record, the blocks are duplicated as many times as there are records. How can I resolve this?

Thanks in advance.

Like 0

Like

0 comments
Show all comments

Good afternoon! Could you please tell me how to add my own page to the templates in Freedom UI?

Like 0

Like

0 comments
Show all comments
FreedomUI
list
selection
Studio_Creatio_enterprise_edition
8.0

Hi Community,

We have a list of records, and we want to execute a process that receives a list of the IDs of the selected records.

Currently, this logic works as expected when we select a few records, for example, if we select two records, we receive the IDs of those two records.

However, when we select all records, the process does not receive any IDs. After reviewing how the list of IDs is generated, we noticed that when all records are selected, the logic is reversed: only the unselected records have their IDs included in the list.

Is there a way to always retrieve the IDs of the selected records, even when all records are selected?

Thank you.

Best Regards,

Pedro Pinheiro

Like 0

Like

1 comments

Retrieving the selected property only works with the loaded records, and records are only loaded in pages of 30 records at a time - so you won't get all. 

Instead of retrieving the selected property, you could instead bind to the list's data source and use a collection param in the process to receive the result? See here for no code approach: https://customerfx.com/article/launching-a-process-for-multiple-records…

Or via code, include the following in your request to crt.RunBusinessProcessRequest (make sure your datasource name is PDS or change below, also that the List is named DataTable, or change below). Note: in my process I have a collection parameter named "Accounts" with a single unique identifier property named "AccountId": 

"dataSourceName": "PDS",
"parameterMappings": {
    "Accounts.AccountId": "Id"
},
"filters": "$Items | crt.ToCollectionFilters : 'Items' : $DataTable_SelectionState | crt.SkipIfSelectionEmpty : $DataTable_SelectionState",
"sorting": "$ItemsSorting",
"selectionStateAttributeName": "DataTable_SelectionState"

Show all comments
Studio_Creatio
8.0

Good Day , 

I would just like to find out if there is a way to create Dynamic Radio Buttons in Creatio. That is based on Data we get from an external database. This is because we want an alternative to the dropdowns and selection combo boxes.

It is the cloud version of Creatio

The Version of Creatio is :

Like 0

Like

0 comments
Show all comments