Hello,

Is there a way to design radio buttons in a detail columns in freedom UI?

I wanted to implement a functionality  such that user can only select option from two columns (exists, not exists)

Any suggestions are really helpful.

 

Thanks

Gargeyi

Like 0

Like

1 comments

I installed an application(Freedom UI) from the other instance. Prior to installation, I ensured that the data binding was correctly set up to ensure the lookup is connected to the export application.



After installing the application on the new instance, the lookups are functioning properly. However, I am unable to make any changes, such as adding a color column or other columns in the lookups (Data model objects).



Please assist in this matter.

Like 1

Like

1 comments
Best reply

Hello,

 

After installing a package on another environment, it gets locked, and you cannot make changes there.

Currently, this is the expected behavior, as a delivery management process for packages exists.

 

Here's the article:

https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platfor…

 

In version 8.1.2, you can unlock the package to apply a hotfix:

https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platfor…

Hello,

 

After installing a package on another environment, it gets locked, and you cannot make changes there.

Currently, this is the expected behavior, as a delivery management process for packages exists.

 

Here's the article:

https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platfor…

 

In version 8.1.2, you can unlock the package to apply a hotfix:

https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platfor…

Show all comments

In this post Anhelina refers in a comment to setting a global flag in a custom field change handler, and reading the value in a validator function.

 

How do I create a global flag that can be accessed in a validator function in a client module?

 

Thanks in advance,

Like 0

Like

0 comments
Show all comments

We have active directory which locks user account after 5 login attempts.

After user change password and his exchange account was added in crm, email listener try to consume mails and 5 times fail it because password in crm is not changed yet (user need to remove his account from crm before changing password).

Our listener is deployed in docker. How we can configure attempts to consume emails < 5 times?

Like 2

Like

2 comments
Best reply

Hi,

 

The values for 'attempts to consume emails' are in the SyncErrorHandler table under the RetryCount column. For example, you can reduce it to 3 times. This would be the most optimal value.

Also, please note that a RetryCount value that is too large or too small can lead to undesirable consequences regarding interaction with your mail server (for example, the mailbox will be disabled upon any negative response from the server). Therefore, we recommend changing this cautiously.

Hi,

 

The values for 'attempts to consume emails' are in the SyncErrorHandler table under the RetryCount column. For example, you can reduce it to 3 times. This would be the most optimal value.

Also, please note that a RetryCount value that is too large or too small can lead to undesirable consequences regarding interaction with your mail server (for example, the mailbox will be disabled upon any negative response from the server). Therefore, we recommend changing this cautiously.

Sergii Zhmurko,

mb you know concrete row what is responsible for my question in this table? We use exchange basic auth

Show all comments

Hello all,

 

Is there a way to revert the Freedom Date time selector to the old option for picking date and time? The new element is incredibly clunky and difficult to use. I frequently find that I have to pick the hour and minutes of the time and then reopen the entire element, click through date and time again just to pick if I want AM or PM. We really like Freedom UI but this UX is impossible to avoid.

Like 1

Like

3 comments

Just as a tip, you can also click on the part of the date or time you want to change on the left side. So, instead of clicking through the date, then time, to be able to change AM or PM you can just click it on the left side. It's not super intuitive - I'd also rather just have the dialog display things differently, but at least it's something 🤷🏼‍♂️ (there's not a way to change that or revert to the older picker dialog)

Ryan Farley,

Thanks. I'll try that to see if feels any better.

+1 for this. It would be great if there is a composable calendar component we can use. Setting the time especially is a little hard

Show all comments

Hey everyone,

I'm exploring integrating Creatio platform with a .NET SDK or REST API SDK for PDF data extraction. Any tips or resources on how to do this would be appreciated!

Thanks!

 

 

 

 

 

Like 0

Like

1 comments

Hello,

To implement your task, you can use these instructions: https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platfor…. It describes how you can configure this.

Show all comments

Hello team,

 

Is it possible to add a custom button in a mobile application that uses the html5-qrcode javascript library to read qr code?

 

Like 1

Like

1 comments

Hello Stefano,

 

Our R&D team has a task to implement a QR scanner in the mobile application (was also discussed here). The task is still in progress on their end and we expect this functionality to appear in the app in the next application releases. Currently it won't be an easy task, html5-qrcode is an external library and cannot be added to the client module.

Show all comments

HOW TO GET DATA FROM EMAIL BODY 

Like 0

Like

1 comments

Hello,



All the information you need is stored in the Activity object, Body column. From there you can retrieve the information you require.

Show all comments

Hey everyone! 

How am I able to remove this option from a Expanded list?

Thanks in advance!

Like 0

Like

4 comments
Best reply

You can remove that by overriding the list's rowToolbarItems and just leave it as an empty list. 

 

See this article here: https://customerfx.com/article/adding-row-action-menu-items-to-a-creati…

 

You can override the menu (usually to add other menu items to it). When you do so you override the "Open", "Copy", "Delete" options and need to add them back in. You could override the menu and then just not add back in the delete option. It would look like this (the article will provide more details)

viewConfigDiff: /**SCHEMA_VIEW_CONFIG_DIFF*/[
    {
        "operation": "merge",
        "name": "DataTable",
        "values": {
            //...,
            "rowToolbarItems": []
        }
        //...
    },
    //...
]/**SCHEMA_VIEW_CONFIG_DIFF*/

The important part there is just the empty array [] for the rowToolbarItems property. This would leave it with an empty menu (and the delete would no longer show)

Ryan

You can remove that by overriding the list's rowToolbarItems and just leave it as an empty list. 

 

See this article here: https://customerfx.com/article/adding-row-action-menu-items-to-a-creati…

 

You can override the menu (usually to add other menu items to it). When you do so you override the "Open", "Copy", "Delete" options and need to add them back in. You could override the menu and then just not add back in the delete option. It would look like this (the article will provide more details)

viewConfigDiff: /**SCHEMA_VIEW_CONFIG_DIFF*/[
    {
        "operation": "merge",
        "name": "DataTable",
        "values": {
            //...,
            "rowToolbarItems": []
        }
        //...
    },
    //...
]/**SCHEMA_VIEW_CONFIG_DIFF*/

The important part there is just the empty array [] for the rowToolbarItems property. This would leave it with an empty menu (and the delete would no longer show)

Ryan

Hey, Ryan ! 

Many thanks, man! 

The thing I've found out is: 

On this new update, the 8.1.1.3635, there's no "rowToolbarItems": []".  so I had to "create" it. 

Awesome knowing about you, tho. I'll seek out your articles on my next doubt. 

Have an awesome week!

Gabriel Henrique Pagotto Otero,

This is true, you won't always see all properties for a List (or any component), especially in the case where the page inherits the list from the base/parent page. However, any of the properties can be added to the merge to override them from how they are implemented in the base page.

Ryan

Ryan Farley,



It would be time to organize advanced Creatio development training from other Creatio partners, it seems you have most advanced documentation/knowledge😅😅

Show all comments

Anyone please clarify the Creatio developer certification exam?

1. How many marks for the case study? 

2. How many marks for the multiple choice questions 

 

Like 0

Like

4 comments

Hello,

 

Could you please describe in more detail what exactly your question relates to?

please clarify the Creatio developer certification exam? 

Hello!

 

Approximately half of the marks can be achieved by test case (50 marks), others are achieved by quiz (50 marks).

You need to have at least an 85% score for the quiz to receive the certificate.

Mariia Sorochan,

Thank you

Show all comments