HI, 

How do I push or replace navigation history in freedom. In classic UI you were able to do it  using a sandbox message. 

Is it possible to be done in Freedom?

Thank you!

Like 1

Like

4 comments

Are you referring to pushing to navigation history (as far as going to the record/page itself)?

If so, this shows how to open a page (section...MoreLess

Show all comments (3)

Hello.

I have a freedom UI FormPage, which may be opened from Business process (Open edit page element). I want to override Cancel button handler in such way that to cancel current business process. I need to know process id (SysProcessLog table) or process element id (SysProcessElementLog table). How...MoreLess

Like 0

Like

2 comments

Hello!

To find information, you can read the data from SysProcessData, more information which contains the interrelationship between the process...MoreLess

Show all comments (1)

Hi there. 

The goal is to adjust visibility of row toolbar Item depending on the value of the field of corresponding record. I added necessary column (ClvSaleStatus) to the list in Freedom UI designer, so all the changes to viewConfigDiff, viewModelConfigDiff and modelConfigDiff look to be present...MoreLess

Like 0

Like

4 comments

Hi, here is an example of how to get the column value:

viewConfigDiff: /**SCHEMA_VIEW_CONFIG_DIFF*/[
			{
				"operation": "insert",
				"name"...

MoreLess

Show all comments (3)

Hi

Somebody tried to enable Playbook areticles in a Freedom UI DCM's?

I tried, but they didn't appears

Some trick?

Thanks

Julio Falcón

Like 0

Like

2 comments
Best reply
Show all comments (1)

Hi, when in a section that contains a multiple cases. you change from one case to another with a field change, a button is shown to validate the case change. 



Is there a way to avoid this? I want to progress bar to automatically update from one case to the other without user intervention. 

Like 1

Like

1 comments

Hi

Somebody know how determine, when working with a record in a Freedom UI page if it corresponds to a new record (new/copy)?

Thanks in advance

Regards

Julio Falcón

Like 0

Like

7 comments

Hello Julio,

const cardState = await request.$context.CardState;
if (cardState == "add" || cardState == "copy") {
     // do something here
}

Ryan

Show all comments (6)

I am looking for assistance with a challenge I am facing in the Freedom UI of Creatio regarding the display of decimal field values in a label.

The issue I am encountering is that when I try to display a decimal value in a label on the Freedom UI page, the value is not being comma-separated as expected...MoreLess

Like 0

Like

4 comments

Hello Satyam,

Could you please clarify how exactly you implemented the 'decimal number' in the label?

Show all comments (3)

Hi Community,

We have this business requirement where we need to add duplicated communication options. For example, we can have two records for the same phone number.

When we try to add the same number, we receive the following error:

How can we turn off this validation/constraint? 

Thank you in advance.

Best Regards,

Pedro Pinheiro

Like 0

Like

2 comments

Hello Pedro,

You can add a few equal phone numbers as the communication options. All you need is to choose the different types for them:

Show all comments (1)

Hi 

I am trying to use the crt.UploadFileRequest in the action menu on the click of 'Upload a file' as shown in the figure. But the functionality doesn't work as the upload function in the attachment detail. Is there any other we can use upload a file from clicking button in the action-menu. 

Like 0

Like

4 comments

Hello,

Please describe in detail how this detail was implemented so we could better understand the issue.

Show all comments (3)

As the title says, we sometimes need to disable buttons while still showing them - something which was easy to do in Classic UI. Is there any way of doing so in Freedom UI? I can't see any examples in OOTB Freedom UI areas, anywhere that does have disabled buttons OOTB are in Classic UI sections (e.g. the "Finish session" button on the System User page on the Access Rules tab when no record is selected).

Like 1

Like

4 comments
Best reply

Classic UI buttons have a property 'enabled'
Freedom UI buttons have a property 'disabled'

Show all comments (3)