Время создания
Filters

The partnership empowers Arondor to expand its Enterprise Content Management capabilities with Creatio’s AI-powered no-code platform 

 

Learn more: https://www.creatio.com/company/news/23524 

Like 12

Like

Share

0 comments
Show all comments

Hi Community!

 

How can I bind the selected row of a list to a property in the ViewModel, or even how can I execute custom code (custom handler) when the row is changed?

Thanks advance!
Ignacio

Like 0

Like

1 comments

Hi,

 

Here is a simple code with an example of how to retrieve selected records:

{
            request: "crt.HandleViewModelAttributeChangeRequest",
            handler: async (request, next) =>  {
              if (request.attributeName === 'GridDetail_9ib3s20_SelectionState') {
                const gridDetailSelectionState = await request.$context.GridDetail_9ib3s20_SelectionState;
                if (gridDetailSelectionState) {
                   let selectedRows = await request.$context.GridDetail_9ib3s20_SelectedRows || []
;
                  console.log(selectedRows);
                }
              }
              return next?.handle(request);
            }
          }

It's triggered when the record is selected in the list and retrieves all selected rows in the list. If you need to retrive currently selected record you may add the following line

 

const lastRowSelected = request.$context.GridDetail_9ib3s20_ActiveRow;

 

Also don't forget to change GridDetail_9ib3s20 to your list.

Show all comments
Idea
Discussion

The Clio team is launching a new project called T.I.D.E.! This tool will enable seamless synchronization of configurations between a Git repository and the Creatio environment directly from Creatio.

 

 

The alpha version of T.I.D.E. will be available on Friday, December 13th! 🎉

 

Be among the first users and help us make this product even better!

6 comments

Great job! thank you.

"Creatio Password" looks too aparent here )). Should be Encrypted string.

Kudos to the Clio team!

This looks fantastic! Great job Clio team!

Great job!

 

Save to git and load from git I think is better to rename to push and pull. 

 

Also need to try it, its not clear how to create and switch between branches.

 

 

Dmytro Oliinyk,

Hi, I agrreed wiith that for developer who often use Git, but for NoCode role a lot of creators don`t use Git. Don`t worry we try to provide ProSkin for this interface in the future ;) 

Show all comments

Hello Everyone, 

Is there Steps how to Configure emails like xyz@outlook.com. This email is personal email and does not belong to any organization but want to connect it in Creatio. I did revied the guides but there is nothing related this "@outlook.com". 
i have already Create the app pasword but still not Configuring. Please find attach some of the Screenshots.

Like 0

Like

0 comments
Show all comments

Like 0

Like

0 comments
Show all comments