Время создания
Filters

Hello community,

 

I'm trying to add to the account form page a chart, but in the chart settings panel the "Apply filter by page data" option is missing.

I can try to add in the code page the json snippet founded in the Opportunity form page, but is there any other way to do it?

File attachments
Like 0

Like

2 comments

This works different for a chart since each series has it's own data and you can connect each series to the page data differently. You have to first define the series. Once you add a series, the name of the series will appear there and then you can click it to connect to page data. 

Ryan

Ryan Farley,

Thank you very much!

it works!

Show all comments

Hi Community,

We are localizing in Italian our application. We are using the OOTB Attachment TAB.

May we ask some suggestions for localizing the label hereafter reported?

 

 

Regards

Stefano

Like 1

Like

0 comments
Show all comments


I am following this article 
 

https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platform/development-tools/testing/examples/add-tests-for-the-custom-class#title-2118-3
 

I am not able to find the file named Terrasoft.Configuration.Tests.csproj in the file provided application .zip file.
 


 

Like 0

Like

0 comments
Show all comments

Hello,

 

some of my users are having problems to se their "format number" in the Profile User page.

They get a permission error, as administrator I don´t get this error when doing the same action.

 

Any idea on what object I should change/allow to the users to fix this?

Like 0

Like

3 comments
Best reply

Something Creatio miss to configure when add this feature. You must go to Object Permissions, search for "SysUserProfile" and add the permission there, search "Number Format" and add users

Something Creatio miss to configure when add this feature. You must go to Object Permissions, search for "SysUserProfile" and add the permission there, search "Number Format" and add users

Thank you Julio, it worked.

Show all 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

5 comments

Hello Julio,

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

Ryan

Ryan Farley,

Thanks Ryan, where did you find/get this kind of information?

Ryan Farley,

Ryan,

 

In which kind of handler request I must introduce the code? I tried in crt.OpenPageRequest, but nothing happens. The code I'm using:

 

handlers: /**SCHEMA_HANDLERS*/[ // NdosEntity_4ad7b54DS.NdosPeriodicidadMP
	{ 
		request: "crt.OpenPageRequest",
		handler: async (request, next) => {
			const okBtn = {
				key: "OK",
				config: {
					color: "accent",
					caption: "OK"
				}
			};
 
			const cancelBtn = {
				key: "CANCEL",
				config: {
					color: "primary",
					caption: "Salir"
				}
			};
 
			// Nuevo o Copia
			const cardState = await request.$context.CardState;
 
			// Mensaje...
			const result = await request.$context.executeRequest({
				type: "crt.ShowDialogRequest",
				$context: request.$context,
				dialogConfig: {
					data: {
						message: ( cardState == "add" || cardState == "copy" ) ? "New: Este es un nuevo registro" : "Existing one: Este registro ya existe" ,
						actions: [ okBtn, cancelBtn ]
					}
				}
			});
 
			if (result === "OK") {
				// Clica en OK
 
			}
 
			/* Siguiente handler, retorna resultado */
			return next?.handle( request );
 
		},	
	},
]

Julio.Falcon_Nodos,

You would add this in the page you’re opening, not in the code that opens the page. What is the intent you’re trying to produce? I assume that in a page you’re wanting to know if the page is in add mode vs edit. Correct? To accomplish this you’d add something such as a crt.HandleViewModelResumeRequest on the page and check the cardstate there. 

Thanks Ryan, I'm also try using crt.HandleViewModelResumeRequest, but nothnig happens.

 

What I need is that when I open the page "Air Equipment/NdosPage_3ud8c3e" it can detect if I am working with a new record and do something. So it is in the code of this page, where I enter the commented code, compile, open an existing record and create a new one and the code entered does not execute/does not work in any situation.

 

If I add the code inside a crt.HandleViewModelAttributeChangeRequest, it works, but it stays 

in loop and to exit I have to go back in the browser.

 

I made a short video to show what I'm doing and where the code is in case it helps to understand, see at

https://share.vidyard.com/watch/NRBjhx3hjzCi9sZ2x5qsSK?

 

In Classic UI I've the onEntityInitialized method to execute when open the page, but in Freedom is very different

 

Thanks again

Julñio

Show all comments