Hi everyone,

Does anyone know if there is a way to use the Calculated Field Widget for Dashboards, within the new Freedom UI? 

 

I note on 8.0.2 there is a way to copy elements from old UI. Is this possible? 

 

Thanks!

 

Harry

Like 0

Like

4 comments

Hello Mark,

 

Could you please describe in greater detail your task?

 

Thank you,

Artem.

Hi Artem, 



within the old UI, we have the marketplace add-on "Calculated Metrics For Creatio", which once installed, has the ability to create calculated metrics in "Dashboards". 



I would like to migrate from the old UI dashboard, to freedom dashboard. However, calculated fields is mandatory. 



Is is possible through dev to implement this DevLabs add-on with the Freedom Dashboard? 

 

https://marketplace.creatio.com/app/calculated-metrics-creatio

Mark,

 

Unfortunately, there is no way to set up existing sections in the Atlas UI.

Our developers are already working on bringing this functionality in future releases of Atlas.

As soon as they bring this feature old sections will be automatically updated.

 

Thank you,

Artem.

Hi Artem, 

 

I am referring to using the element within the new UI. Not bringing an existing section into it. 

 

Thanks

Show all comments

Hello,



I want to make a cascading dropdown. For example; user selects City, then County, then District, then Street... I want to fill the dropdowns from external web service whenever user selected previous dropdown.



How should i go about it?



Like 3

Like

3 comments

Hello Ensar,

Loos like you just need to add a filter to the column based on the other column value.

You can do it by adding attribute on the needed column.

For example:

"Transport": {
                "dataValueType": Terrasoft.DataValueType.LOOKUP,
                "lookupListConfig": {
                    "filters": [
                        function() {
                            var filterGroup = Ext.create("Terrasoft.FilterGroup");
                            filterGroup.add("WhatWeight",
                                Terrasoft.createColumnFilterWithParameter(
                                    Terrasoft.ComparisonType.GREATER,
                                    "[StTransport:Id].StMaxWeight",
                                    this.get("Weight")));
                            return filterGroup;
                        }
                    ]
                }

In this example we have column "Transport" and we wont to display values where their column "StMaxWeight" is greater that out column "Weight".

Thanks for your reply Dmytro Vovchenko,

 

Filtering is ok. At the same time, i need to get data from external web service not database. Is there a way binding lookups to external web service dynamically?

Not quite understand what are you trying to do but I think you can store the value from your web service in the schemas attribute and then work with it. To make it work you just need to somehow get the needed value from the web server in the schema code. 

Show all comments

Hello guys!

How can I make these control buttons disabled, and enabled again when there is not result in search?

Please help me. Any ideas are valueable!

Like 0

Like

4 comments

Hello Muhammadjon,

 

Please note that it is only possible to implement such logic with the means of development, as such an option is not available using regular user tools. Please feel free to look for ideas here on community or on Creatio Academy. 

 

Kind regards,

Mira

Mira Dmitruk,

Hello Mira,

 

There is no way to do that? Do you have any idea how to make this development tools?

 

 

 

Hello,

 

Unfortunately, we have no examples of such logic implemented and this is considered to be a development consultation, which technical support does not provide. You could contact your manager and specify with them if it is possible for you to receive such a consultation.

 

Kind regards,

Mira

Mira Dmitruk, Thanks You!

Show all comments

HI all,

I need your help.

I'm Trying to customize the mobile app. But each time I follow the documentation 

and need to modify the manifest module with:

e.g: 

"CustomSchemas": ["mycustommudule"],

 

I get console error (on the debugging browser) saying:

Path for schema 'mycustommudule' not found.

* i get this error for every custom module I create and try to add it to "CustomSchemas".

 

Or  adding "PagesExtensions": [mycustommudule,...]  <-- doesn't work

 

Basically i'm trying to add a button to my custom section on the mobile app & handle it's "on click" event. but i just can't make it work..

* I followed the documentation on :

https:/academy.creatio.com/docs/developer/mobile_development/customization/manifest/add_a_button  

 

with no luck...

 

Thank.

  

Like 0

Like

1 comments

HI Eran!

 

Have you tried generating source code for all schemas and compiling the app?

 

Best regards,

Max.

Show all comments

Hi all,

I am currently in the process of setting up dashboards for a client, but wondering if some functionality that I can't see is possible.

 

1. Line Graph 

On the attached graph I have set 4 series all by their fiscal year (June-May). I have done this via custom start and end date, because I understand the fiscal year can't be done. However, this is still showing on the line graph grouped by calendar year. I.e it starts with January and not June - therefore, the first 5 months are actually of year 2024 and then follows on to 2023. 

 

Is there anyway round this so that it actually shows sequentially by date I have selected? 

 

 

2. Metric

Is it possible via custom function (or marketplace app) to add a "Same Period Last Year" to show against the metric number? So for example, if i choose total Revenue this month, it can show the same period last year? Example below.

 

Thanks everyone!

 

Mark

 

 

 

Like 0

Like

0 comments
Show all comments

Hi Community,

 

I have to use Excel Export Creatio Functionality but instead of downloading the .xlsx file in the system, I have to attach that .xlsx file to the Attachments of a Custom Section.

This task should be performed by the business process after giving filtration criteria as input.

 

Please suggest me a solution to achieve the above task.

Like 1

Like

3 comments

Dear Pratik, 

 

Unfortunately requested functionality is not presented as OOB solution in Creatio at this moment. 

We will register this as an idea for the responsible R&D team to extend the basic functionality in future Creatio releases. 

 

Kind regards,

Roman

Hi Roman Brown,

Thanks for providing the information regarding to this.

 

But, for workaround is there any Creatio Service avaible that can be utilized In some custom script configuration with Script Task element of business process.?

And if yes, Is there any example available on how to make use of such Services in development. 

Hi Roman,

 

Could you please provide steps or source code for a sample excel sheet creation and saving data, that supports creatio platform (ex. using openXml, IronXL or Interop etc.) and later that can be extended with creatio's future release?

 

Regards,

Rishabh

Show all comments

Hi Community,

 

I want to make use of and set up OAuth 2.0 Authentication in web service authentication. For that I found below the academy article :

 

https://academy.creatio.com/docs/user/no_code_customization/web_service…

 

While setting up as per the article, there is one required field in the OAuth Setting fields which is "Auth code request URL".

 

But the API endpoints for which, I have to make use of Web Service OAuth Authentication, is not having settings for Auth code request URL required parameter.

 

 

Please guide and help me on this point that how I can set up OAuth Authentication in web service without Auth code request URL.

Like 0

Like

1 comments

Hello Pratic,



Unfortunately, the is no way to set up OAuth Authentication in web service without Auth code request URL.



This parameter is necessary to identify users.



Best regards,

Bogdan



 

Show all comments
define("ContactPageV2", [], function() {
	return {
		entitySchemaName: "Contact",
		attributes: {
 
		},
		modules: /**SCHEMA_MODULES*/{}/**SCHEMA_MODULES*/,
		details: /**SCHEMA_DETAILS*/{}/**SCHEMA_DETAILS*/,
		businessRules: /**SCHEMA_BUSINESS_RULES*/{}/**SCHEMA_BUSINESS_RULES*/,
		methods: {
		},
		dataModels: /**SCHEMA_DATA_MODELS*/{}/**SCHEMA_DATA_MODELS*/,
		diff: /**SCHEMA_DIFF*/[
			{
				"operation": "insert",
				"name": "hasForeignTrade",
				"values": {
					"click": "getLookupConfig",
					"layout": {
						"colSpan": 12,
						"rowSpan": 1,
						"column": 0,
						"row": 2,
						"layoutName": "ContactGeneralInfoBlock"
					},
					"bindTo": "UsrHasForeignTrade",
					"labelConfig": {
						"caption": {
							"bindTo": "Resources.Strings.hasForeignTrade"
						}
					},
					"enabled": true,
					"contentType": "Terrasoft.core.enums.ContentType.LOOKUP"
				},
				"parentName": "ContactGeneralInfoBlock",
				"propertyName": "items",
				"index": 4
			},
 
		]/**SCHEMA_DIFF*/
	};
});

 

Hello,

How can i make this lookup multiselect?

Like 1

Like

1 comments

I was finally able to build a report and get it into the correct section, but now I am receiving the following error message. 

I am not sure how i can edit the GUI. Please advise. Thank you.

 

Patrick

Like 0

Like

3 comments

Hello Patrick,

 

from this perspective it is really difficult to say where the issue may occur, So we would recommend you create a support case so our team can investigate the reasons for such an error and provide you with the solution.

 

Regards,

Gleb.

Gleb,

 

A report was made previously, but since the Excel Add-in was made by a third party creatio was unable to asssist.

 

Essentially in the Excel Add-in, when i am trying to create a related schema to the main table, i am being forced to select "id" as the Master Column. Even though the "id" is unique to each record. If i do not select "id" i get the aforementioned error message when trying to generate the report. I would prefer a different identifier so i can link the data from the main table to the related schema table. Thanks.

Patrick Ostrowski,

 

can you please detail a bit more on where exactly you are implementing such logic and where you are trying to add those columns?

 

Thanks in advance.

 

Regards,

Gleb.

Show all comments

Hi all, 

I have implemented the Multiple choice field setup for Creatio (Devlabs). 

 

Everything looks fine, but when I save an entry, the field values disappear. 

 

Could anyone help? 

Like 0

Like

1 comments

Hi Joseph!



Could you send us more details about the issue?

Specifically, please specify the Creatio version, the object model, the objects you use for testing the add-on, and how the objects are connected between each other. Also, send us your schema code.

Show all comments