How to add a new component (for loading map in a specific field i.e.,Address etc..) in form page,Freedom UI

Like 0

Like

1 comments

Hello,

 

Does anybody know if pdf version of Creatio guides (marketing, setup and administration and etc.) exists for the latest version of the platform? I found several, but all were for 7.1x releases

Like 0

Like

3 comments

Hello Artem, 

Thank you for your question. 

You can find all the necessary information under the following link to our Academy:

https://academy.creatio.com/docs/8.x/

On the right corner, you will have the opportunity to choose the version you need. 

Hanna Shevchenko,

Hello Hanna, 

 

Thanks for the answer. Are these guides accessible in pdf version?

Unfortunately, we do not have a PDF version of the guides available at this time. 

Show all comments

Hello Community,

 

I'm trying to use the "Apply Filter" function to filter a lookup value based on three parameters. The business rule works correctly when adding a new record and copy record; however, when editing an existing record, only one filter is being triggered (marked).

 

 

Has anyone encountered this issue, and is there a solution to ensure all filters are applied when editing a record?

Like 0

Like

0 comments
Show all comments

I need to draw editable JSON trees, to use that I've chosen this library - https://github.com/josdejong/jsoneditor; the idea is to draw trees inside a Terrasoft.ViewItemType.CONTAINER. 

 

My understanding was that to import this(or any other) library I need to create a module and put a define() {} inside it, and inside that goes the library code(jsoneditor.js contents in my case), so I ended up doing that:

define("UsrJsonEditor", [], function () { 
// jsoneditor.js contents
}

 

After that I'm importing that module to my page and trying to check if it works by doing this:

define("UsrCardOrders1Page", ["ProcessModuleUtilities", "UsrJsonEditor"], function(ProcessModuleUtilities, UsrJsonEditor) {
    return {
        ...
        methods: {
            initializeJsonEditor: function() {
                window.console.log("UsrJsonEditor: " + UsrJsonEditor);
                window.console.log("UsrJsonEditor.JSONEditor: " + UsrJsonEditor.JSONEditor);
            },
...
        }
    {
});


The initializeJsonEditor() function is called when the container is rendered.
This results in the following error:

Uncaught Error: Mismatched anonymous define() module: function () { return /******/ (function () { // webpackBootstrap /******/ var __webpack_modules__ = ({ /***/ 6545: /***/ (function (__unused_webpack_module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ t: function () { return /* binding */ ContextMenu; } /* harmony export */ }); /* harmony import */ var _createAbsoluteAnchor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1925); /* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(6237); /* harmony import */ var _i18n__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(3057); function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.construc…


I don't have enough experience with JS, but as I understand it the problem is that I've ended up with with the library's define() inside my own define(). Could someone tell if my approach is generally correct and what is that I'm doing wrong here?

Like 0

Like

5 comments
Best reply

You can load it via the CDN using requirejs. See my response on this thread: https://community.creatio.com/questions/how-include-external-js-file-creatio

Ryan

You can load it via the CDN using requirejs. See my response on this thread: https://community.creatio.com/questions/how-include-external-js-file-creatio

Ryan

Ryan Farley,

It works, thanks!

Aleksandrs Abarovičs,


What option worked for you?

I tried doing something like what was shown, but it gives me the following error: 

message: Error: Script error for "PdfLib", needed by: UsrClient1Page http://requirejs.org/docs/errors.html#scripterror

requirejs.config({
	paths: {
		PdfLib: 'https://cdn.jsdelivr.net/npm/pdf-lib/dist/pdf-lib.js'
	}
});
 
define("UsrClient1Page", ["PdfLib"], function (PdfLib) { });

Solem Khn,

Not completely sure, but I believe PDFLib has other dependencies that also need to be loaded and the require config needs special values for it to load correctly. Might want to look for some examples of loading PDFLib using require from a CDN.

Solem Khn,

I had a similar problem, in the console I noticed that requirejs was trying to load jsoneditor.min.js.js instead of jsoneditor.min.js 
Seems like requirejs automatically appends .js to the path defined in paths. So maybe your pdf-lib.js becomes pdf-lib.js.js.

I've ended up using this:

requirejs.config({
	paths: {
		css: 'https://cdnjs.cloudflare.com/ajax/libs/require-css/0.1.10/css.min',
    	JsonEditor: 'https://cdnjs.cloudflare.com/ajax/libs/jsoneditor/10.1.2/jsoneditor.min',
    	JsonEditorCSS: 'https://cdnjs.cloudflare.com/ajax/libs/jsoneditor/10.1.2/jsoneditor.min'
  	}
});
 
define("UsrCardOrders1Page", ["ProcessModuleUtilities", "JsonEditor", "css!JsonEditorCSS"], function (ProcessModuleUtilities, JsonEditor) {}


This way I'm getting jsoneditor.min.js instead of jsoneditor.min.js.js

Show all comments

Hi there

I implemeted custom UI component (OsmMapsModule) and injected it on Freedom Ui list page using this article Implement a custom UI component based on a Classic UI page | Creatio Academy

Now I need to get feedback from that component on the page to trigger some logic on Freedom UI, bu fail to do so. Here is my code.

define("ClvObjectMapModule", ["ClvObjectMapModuleResources", "@creatio-devkit/common", "Base7xViewElement", "MaskHelper", "ClvJsConsts", 
							  "ckeditor-base", "Leaflet", "css!Leaflet"], 
function(resources, sdk, Base7xViewElement, MaskHelper, ClvJsConsts) {
 
    /* Declare a "ClvObjectMapModule" class. */
    class ClvObjectMapModule extends Base7xViewElement {
 
		_mapRecordClickedId;
		get mapRecordClickedId() {
			return this._mapRecordClickedId;
		}
		set mapRecordClickedId(value) {
            this._mapRecordClickedId = value;
        }
		...
 
		// Here I make change and want it propagate to Freedom UI page.
 
		_clvOpenPage(config) {
			this.mapRecordClickedId = config.recordId;
		}
    }
 
    /* Register the component. */
    customElements.define('clv-objectmap', ClvObjectMapModule);
 
    /* Register a component as a visual element. */
    sdk.registerViewElement({
        type: 'clv.ObjectMap',
        selector: 'clv-objectmap',
        inputs: {
			mapRecordClickedId: {}
		},
		// This is not documented and I just guessed it might work like for example inputs work.
        outputs: {
			mapRecordClickedId: {}
		}
    });
 
    return Terrasoft.ClvObjectMapModule;
});
Like 1

Like

2 comments

And here is code in Freedom UI

"MapRecordClickedId": {
	"modelConfig": {}
},
...
{
	request: "crt.HandleViewModelAttributeChangeRequest",
	handler: async (request, next) => {
 
 
// I want this handler to be triggered but it just does not when I make changes in custom component
 
		if (request.attributeName === "MapRecordClickedId" && sdk.isGuid(request.value)) {
			const handlerChain = sdk.HandlerChainService.instance;
			await handlerChain.process({
				"type": 'crt.OpenPageRequest',
				"schemaName": "ClvObject_FormPage",
				"modelInitConfigs": [{
					"recordId": request.value,
					"action": sdk.ModelInPageAction.Edit
				}],
				$context: request.$context
			});
		}
 
		return next?.handle(request);
	}
},
...
{
	"operation": "insert",
	"name": "ClvObjectMap",
	"values": {
		"type": "clv.ObjectMap",
		"mapRecordClickedId": "$MapRecordClickedId",
		"styles": {
			"width": "-webkit-fill-available"
		}
	},
	"parentName": "ClvMapContainer",
	"propertyName": "items",
	"index": 0
}

Andrii Orlenko,

Unfortunately, it's really hard to understand where the issue is with such parts of the code. I can advise you debugging to see step by step where the data is missing or where the issue appears.

You may also create a new community question with a more general description of your needs to receive some examples.

Show all comments

Hello,

I was trying to Create a random SQL View in Creatio Cloud and wanted to check if I can access it's records through Creatio Odata API. I followed below steps.

    1. Created  below simple SQL view in Creatio to display account and their annual revenue. 
    

IF EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[UsrVwAcctRevenuesT]'))
            DROP VIEW [dbo].[UsrVwAcctRevenuesT]
            GO 
            CREATE VIEW [dbo].[UsrVwAcctRevenuesT] AS
            SELECT Account.Id AS UsrId, AccountAnnualRevenue.Name AS UsrRevenue
            FROM Account  LEFT OUTER JOIN AccountAnnualRevenue  ON 
            Account.AnnualRevenueId = AccountAnnualRevenue.Id
            GO
   

        

    
    2.  I created new object in Creatio with same name (UsrVwAcctRevenuesT) as that of my SQL view with columns as "UsrId" (GUID datatype) and  "UsrRevenue" (TEXT data type with 50 chars) and kept same title.

 

    3. I marked above object as "Represents Structure of Database View" and set Id as "UsrId"
    
    4. Saved, published and compiled above new object.
 

But now when I tried to access it from Creatio Cloud through odata using below URL, 
https:///0/odata/UsrVwAcctRevenuesT
 

I am getting below error.

 

{"error":{"code":"","message":"An error has occurred.","innererror":{"message":"The 'ObjectContent`1' type failed to serialize the response body for content type 'application/json; odata.metadata=minimal'.","type":"","stacktrace":"","internalexception":{"message":"42P01: relation \"public.UsrVwAcctRevenuesT\" does not exist","type":"","stacktrace":""}}}}

 

Am I missing anything ?

Thanks.

 

Like 1

Like

3 comments

Hello!

 

To resolve the issue, please try to do the following:

  1. 1) Navigate to the configuration
  2. 2) Generate source code for all schemas
  3. 3) Compile the application
  4.  

Have a nice day!

Arsenii Ostapyk,

Hi,

I followed above steps . But still getting the same error.
 

Hi,

 

To verify is the View and all its columns have been correctly created and are accessible for the configuration, please create a lookup of this view, display all its columns on the page and check if there are any records appearing.

 

If not, then it means that the view has been incorrectly created.

Show all comments

Hello,

 

Is it possible to send/convert a document to base64 and send it to an external API from Creatio?

Example:
 

A)


B)

 

 

Thanks.

 

Like 0

Like

1 comments

Hello,

 

FileAPI returns the bytes array for the file content thus this bytes array can be used to convert the file content to base64 string like:

using System;
class Program
{
    static void Main()
    {
        byte[] byteArray = { 72, 101, 108, 108, 111 }; // "Hello" in ASCII
        string base64String = Convert.ToBase64String(byteArray);
 
        Console.WriteLine("Base64 String: " + base64String);
    }
}

This conversion should be implemented in the script-task element, and the result (base64String) should be set as a parameter value to be used elsewhere. 

Show all comments

Hello community,

 

Is there any way how to check what happened with test emails? 

 

I'm wondering because I have a strange situation when for one template I successfully receive message while for another I don't. And my intention is to somehow check whether test email was actually sent or it wasn't due to, in particular, some internal errors in template (I imported the template as a html code, maybe there are some invalid tags that doesn't allow to create message properly)

Like 0

Like

1 comments

Hello,

Unfortunately, there is currently no way to check if a test email has been sent. We have created a task to review this logic and improve it in the next releases.

Best regards,
Antonii.

Show all comments

Hi,

How to do Attachment* as mandatory?

Like 3

Like

6 comments

Hello,

Thank you for your request. Unfortunately, it is not possible to make the Attachment required using custom methods as it is a detail.


However, as a workaround using l development, you can implement following validation script (sample for Activities) in object process for Validating message:

UserConnection userConnection = context.UserConnection;

   Select select = (Select)new Select(userConnection)
            .Column(Func.Count("Id"))
            .From("ActivityFile")
            .Where("ActivityId").IsEqual(Core.DB.Column.Parameter(Entity.Id));
       
if (select.ExecuteScalar<int>() == 0)
            throw new Exception("Attachment is required");

return true;

Halyna Parkhomenko,

 

Hi Halyna ,

Can you tell me in detail where I can put this code and where it runs inside Open Process?

 

Hi Halyna 

When I apply the code inside Open Process it gives me this message Is there a solution?

Hi Halyna 

When I apply the code inside Open Process it gives me this message Is there a solution?

 

Muath Ali Hamdan Salem,

 

Hello,

 

As for the 'Select' errors - the most probable reason is the usage of the Terrasoft.Core.DB namespace is not added to the class.

 

As for the last error in your screenshot - either it will be fixed by fixing previous errors or the issue is that you call construction that requires 1 type argument. Need to see the code in this line.

Hi,Oleg Drobina

Isn't there another way to make the attachment file mandatory through validation of the form page and not by placing a condition on the table in the database that I want in the form page?

Show all comments

the object in Freedom UI. 

Like 0

Like

1 comments

Hello!

Could you clarify your problem and provide more information about the actions you have taken?

Regards,
Anton

Show all comments