I'm trying to configure a modal lookup window by following Example 2 in this academy page https://academy.creatio.com/documents/technic-sdk/7-15/creating-detail-selection-lookup and everything works as described, but I cannot figure out how to add a default sort to the modal lookup window...MoreLess

Like 0

Like

1 comments

Dear Harvey, 



There is no description for all parameters of the lookup config. The possible way is to check the existing openLookup calls...MoreLess

Show all comments

I have read this article regarding adding multiple value to a detail.

Link - https://academy.creatio.com/documents/technic-sdk/7-15/adding-multiple-records-detail

But I do not understand these variable values. The opportunity and contact are the sections that are already created in the...MoreLess

Like 0

Like

4 comments
Best reply

Hello Ramnath,

rootEntitySchemaName is the name of the parent object. This is likely the object for the page where the detail is located...MoreLess

Show all comments (3)

Hi everybody,

I'm trying to introduce a method that when selecting an element from the grid, it saves the id of an attribute in a variable I created and when I delete that same record it has to start a process.

However, when I run all this pops up this error.

This is the code i implemented in order to achieve this.

Thanks in advance.

Best regards,

Pedro Pinheiro

Like 1

Like

2 comments
Best reply

The order of the modules at the top doesn't match/line up. You have this:

define("imdSchema10Detail", ["ConfigurationGrid", "ConfigurationGridGenerator"...MoreLess

Show all comments (1)

I am facing issues with the console flooded with the web-socket errors.

I don't know which element is bugging it.

Because of this sometimes I have to hard reload (empty cache) 3 to 5 times to do my configurations of view any record after some changes in section wizard or in any object.

Like 0

Like

2 comments
Best reply

This is due to the telephony integration being turned on by default in new systems, but not set up to connect to a phone system. To get rid...MoreLess

Show all comments (1)

Hi Community,

I need to fetch data from third party database and display it on edit page, is it posible to connect to third party database on edit page using client code? or what is the best approach?

Like 0

Like

1 comments

Dear Fulgen,

Unfortunately, it is not possible to connect a third-party database to the system to display its data on the edit page. As a solution...MoreLess

Show all comments

Hi Community,

I want to call a process on the 
client side and when it ends, for example, update certain values ​​of the page. 
Is it possible using the callback? 
The callback works but the page with the caption of loading remains. I Have this example:

var someFunction = function (a) { 

  ...

MoreLess

Like 0

Like

2 comments
Show all comments (1)

I would like to get rid of tag button on all my pages. Is it possible to use replacing client modules to remove TagUtilitiesV2 from the list of dependencies of BasePageV2? Or maybe there's a better way to do that?

Like 0

Like

2 comments

You can write something like the code below in the BaseModulePageV2 and in the BaseSectionV2

define("AccountSectionV2", [], function() {
	return...

MoreLess

Show all comments (1)

There are onInit and onRender methods available in client modules but neither of them runs after the page has rendered completely. Is there a method that is called after the DOM tree is ready?

Like 0

Like

14 comments

Unfortunately, there is no method that runs after everything on a page  is rendered. Please consider investigating the element that...MoreLess

Show all comments (13)

Is it possible to put a button (or custom link) on the side bar, where sections are? If it's not possible with the current framework - do you think it would break something if such button was placed there using jQuery?

Like 0

Like

2 comments

Dear Carlos,

You may try add a usual custom section, put it at any workplace you want and then override init function in section module:

init:...MoreLess

Show all comments (1)

Hello, 

I am wondering if anyone could help me solve this issue:

I am trying to have a calculation on the client side figure out how much time is between now (current time) and a due date set on the page.

1: I am grabbing the date from the dueDate field on the page and setting it to a variable ...MoreLess

File attachments
Like 0

Like

3 comments

I would do something like this

define("ActivityPageV2", [], function() {
	return {
		entitySchemaName: "Activity",
		details: /**SCHEMA_DETAILS*/...

MoreLess

Show all comments (2)