Время создания
Filters
Discussion
FreedomUI
Charts
widget
page designer

Creatio has the ability in charts to set "top N" limits for dashboard widgets like bar and column charts through the code, by modifying the rowCount property (path config > series > data > providing > rowCount) but this property isn't surfaced via the Page Designer UI. This is often a very useful feature, and so it would be good to make it possible to set it via the Page Designer UI to reduce the need to make page code changes.

 

At the moment, it seems like the Page Designer can quite easily accidentally override the rowCount value by changing small config settings in the graph as well, which is bad for causing regressions. If this were surfaced in the Page Designer, this would presumably resolve this issue too.

1 comments

Hello,

We have registered the idea to add this functionality into the Page Designer UI. You can monitor updates in the release notes.

Show all comments

We are using a Freedom UI application and want to restrict Quotations visibility by role (e.g., R&D users should only see records with Status = Quote / R&D Review).
In Classic UI this could be done via Section access → default folder by role, but we do not see this option in Freedom UI.
Can you please confirm whether role-based default folders / section access are supported in Freedom UI?
If not, is Object permissions with conditional Read access the recommended and supported approach?
Please advise on best practice.

Like 1

Like

0 comments
Show all comments

how user can enter only one pdf or one file not list like this is there any built-in item do this ?

form page data model

Like 0

Like

2 comments

Hello, 

 

Kindly provide more details about current behaviour and expected result so we could assist further. 

Oleksandra,

ok for example if I want user to enter his HR letter ok I will add input field which is attachment in the form page which will allow him to upload files but now we have a problem that user can upload more than one file but we need only one HR letter not list of HR letters 

 

Show all comments
json
collection
subprocess
Studio_Creatio_enterprise_edition
8.0

Hi all,

I am running a process to deserialise a JSON string from a webhook and pass the results (an email address and a state) into a sub process.

The deserialisation step works as I can see the results which have been passed into the collection of records parameter in the process log (only 1 in this sample):
Collection parameter

Parent process
                {
            "Parameter": "Bouncebacks",
            "Value": {
                "Before execution": [
                    {
                        "email": "billy.bob@river.com",
                        "__state__": "bounced"
                    }
                ],
                "After execution": [
                    {
                        "email": "billy.bob@river.com",
                        "__state__": "bounced"
                    }
                ]
            }
        }

  I pass this collection into a sub-process but the values don't appear to pass in correctly:

Parent process

//Sub process
        "Process parameters": [
        {
            "Parameter": "Email",
            "Value": {
                "Before execution": null,
                "After execution": null
            }
        },
        {
            "Parameter": "State",
            "Value": {
                "Before execution": null,
                "After execution": null
            }
        }
    ]      

  I cannot figure out why not. Any ideas?      

Like 0

Like

0 comments
Show all comments
ExcelReportBuilder
excel
ExcelExport
Studio_Creatio_enterprise_edition
8.0

Hi.  We are using the Excel add-in to create a spreadsheet and attach it to an email.

Is there any way to create a link in a cell?  We have the Opportunity # listed in the spreadhseet, and it would be handy if the user could just click the cell and open that Opportunity in Creatio directly.

I know I can open Excel and create a hyperlink like Oppy-123456 but can this be created in the Excel add-in somehow?

Thanks
Rob

 

Like 0

Like

2 comments

You could likely add a formula using the Excel HYPERLINK function in the template for the Excel report. 

Essentially, create a template for the Excel report. In the Excel report you'd have a column for the record Id. Then use that Id in the formula to create the hyperlink. You could hide the column for the Id as well. If you've not created a template for an Excel report before I have some info here.

Ryan

Thanks -- that's a helpful video!  I will give all this a try and post my results here.
~~~ rob

Show all comments