Hello,

 

This was an issue in Classic UI, when hidden fields still take a place on the page. But hope, Freedom UI can make it better.

I've tried this, but still there are spaces. How can we hide them at all? We have set with different fields, that are shown by conditions (and cannot be grouped). But it looks not very nice when they are hidden



Thank you very much!

Vladimir

Like 1

Like

3 comments
Best reply

Hi Vladimir,

 

If I am understanding your question correctly, you can use the "flex column" layout component. If you add your fields to this, it will adjust depending on which fields are visible

 

The below is the component in the the Freedom UI editor, along with how it displays to the user when the final three fields are not visible. 

 

 

 

Hi Vladimir,

 

If I am understanding your question correctly, you can use the "flex column" layout component. If you add your fields to this, it will adjust depending on which fields are visible

 

The below is the component in the the Freedom UI editor, along with how it displays to the user when the final three fields are not visible. 

 

 

 

I feel we need more training/documentation to make full use of Freedom UI :)

Hello,



That's correct. In order for the elements to "move" if other elements are hidden, you need to place these elements within a Flex column container. In other cases, there will be empty space instead of the element.

We've taken your customer voice into account and have created a task for the responsible team to supplement such documentation.

Thank you!

Show all comments

Good morning

 

When I export to SVG, I cannot use it because cannot read labels. See result here https://prnt.sc/lxuvQOyxDeXV

 

Please help

 

Thanks

Like 0

Like

3 comments

Hello Julio,

 

The issue may occur due to the tool / program with which you are viewing the image. Please try to open it with browser or other available tool.

 

Best regards, 

Anastasiia

Anastasiia Zhuravel,

Thanks Anastasiia,

 

In chrome works, but if I want to add it to an MS Word document to complement documentation, this is what I get, https://prnt.sc/m-Md7Hne7mqq 

 

And if I want to open it on a SVG editor like Inkscape I get this another result, https://prnt.sc/lxuvQOyxDeXV

 

Please help

Regards

Julio

 

Hi Julio,

 

Thank you for informing us! 

We'll register a query for a responsible R&D team to improve the functionality. 



Best regards,

Anastasiia

Show all comments

Hello, 



I'm trying to create a popup to display to users after they start a new session (log in).  What is the simplest way to do this? 



There is a new business process called "User sessions" in the CRT Base package.  Is this something I could use for the purpose of displaying a popup after a new user session is created?



I was able to create a custom user task that displays a popup and call it with a business process with a simple start but cannot figure out a way for it to be triggered to display to a user when they start a new session.



Any guidance is appreciated.  Thank you!

 

 

Like 1

Like

1 comments

Hello,

 

Sessions are created directly in the database by Insert and do not generate an event on the object. Business processes rely on events at the object. If it is not the happening process will not notice any changes. As for now, there is no option to track start/end of the user session via the process signals. Our R&D team responsible for this functionality is already working on implementing it in the future releases. I will forward your feedback to the team in order to increase the importance of this task.

 

Best regards,

Yuliya

Show all comments

Hi Team,

How can I disable (override) method getIncrementCode in ContractPageV2?

We dont need the Auto Numbering feature in the Contract section.

Sasori

Like 0

Like

7 comments

Hi Community,

Any update regarding the topic?

Sasor

Hi Sasori,

 

we have done the following trick in onEntityInitialized

 

onEntityInitialized: function() {
 if ((this.isAddMode() && this.Ext.isEmpty(this.get("Number"))) || this.isCopyMode()) {
  this.set("Number", ".");
 }
 this.callParent(arguments);
 if (this.get("Number")===".") {
  this.set("Number", "");
 }
},

 

Hello Vladimir,

Thank you very much for the provided code!

I have tried this snippet and it doesnt work.

When I try to save the record ( the incremented value is still stored) even though in the page there is a black space.

Sasori

Hello,

Only overriding onEntityInitialized won`t be enough because there is also a server logic that sets the Number (ContractEntityEventListener schema). If you change only the onEntityInitialized, the system will still set a number if the contract was created using BP or integration.

If you want to turn it off you will need to also override ContractEntityEventListener:

 namespace Terrasoft.Configuration
{
	using Terrasoft.Core.Entities;
	using Terrasoft.Core.Entities.Events;
	using Terrasoft.Core.Process.Configuration;
 
	[EntityEventListener(SchemaName = "Contract")]
	public class UsrContractNewEntityEventListener : BaseEntityEventListener {
 
		#region Methods: Public
 
		public override void OnInserting(object sender, EntityBeforeEventArgs e) {
			base.OnInserting(sender, e);
			var entity = (Entity)sender;
			entity.SetColumnValue("Number", "");
		}
 
		#endregion
 
	}
}

 

Dmytro,

Thank you for the excellent response!

The last problem I am facing regarding this issue is when I 'Save' the record.

The 'Number' field is a mandatory field. Even though I put a value in Number i keep getting this pop-up:

Should I do any other modifications in the code ?

Sasor

Sasori Oshigaki,

 

It's not related to any customization described either by Vladimir and Dmytro (I've tested both codes and they don't result in this ""Number" field is required" message). You have some another customization that makes the "Number" field mandatory (custom code, business rule, column settings on the object side or on the page side), you need to find and disable it.

Hi Oscar,

The number field is a required field (this is how daily business needs it)

Problem is, that even when we enter the number and save the record, the message pops-up. (Number field is required)

Is this probably because the code in the server side should be like this :

 

namespace Terrasoft.Configuration
{
	using Terrasoft.Core.Entities;
	using Terrasoft.Core.Entities.Events;
	using Terrasoft.Core.Process.Configuration;
 
	[EntityEventListener(SchemaName = "Contract")]
	public class UsrContractNewEntityEventListener : BaseEntityEventListener {
 
		#region Methods: Public
 
		public override void OnInserting(object sender, EntityBeforeEventArgs e) {
		}
 
		#endregion
 
	}
}

Just overriding the method and practicaly not do anything there ?

Sasori

Show all comments

Hi all,

 

Please kindly advise if there a way for us to not show [#UsrText#] in email template/ report when the field is empty

sa

Many thanks

 

 

Like 0

Like

1 comments

Greetings,



As for now the only way to check if the macros has no data inside it is to manually select a template in the email editor and see which data is populated for the user or not. Also in case you are using some information on the record you need to check if all the records have values in the columns that are used as macro sources. Unfortunately that is all for now, but we have already posted our R&D team to improve this functionality in the future.

Show all comments

Hi guys,

How to solve the below error it is occourig while logging into my local instance.

Thanks and regards,

Mohith.

Like 0

Like

0 comments
Show all comments

how to delete the plus button "+" in the header of the page and change the title "Hello ..." ?



 

Like 0

Like

1 comments

Hello,

 

The plus button cannot be removed from the page, as this is one of the core functions in the system.

 

As for the title, you can modify it as described in this article: https://academy.creatio.com/docs/user/platform_basics/freedomUI/customi…

 

Best regards,

Yuliya

Show all comments

Hi community,

Anyone have idea how to use sandbox in new freedomui pages. In classic Ui we used to follow this documentation https://academy.creatio.com/docs/developer/front_end_development/sandbox/overview#case-2591. Can we do same functionality in freedomUI pages?



Thanks.

Regards,

Manideep Korni.

Like 0

Like

1 comments

Hello,

Thank you for your question!

 

Unfortunately, It is not possible to use the sandbox in Freedom UI,

but we have already registered the following suggestion for our R&D team and they will consider adding the following functionality in the upcoming releases.

 

Show all comments

Hi Academy,

Which is the correct set of OOB pacakge dependencies when creating a new pacakge that is going to store developments/customizations done to the mobile app.

Regards

Sasor

Like 0

Like

0 comments
Show all comments

Hi Community,

 

In our Approval Process, there will be more than 2 options and we are not using only approve and reject.

We will use the color for our decision

  • White = Approval
  • Black = Rejecte
  • Grey = will active a sub-process to add in more information

Could I able to set up an approval like that?

Thank you

Like 0

Like

4 comments
Best reply

Bao,

 

Your business task could be achieved by business process. 

 

You can use your diagram as the base for the process. 



Instead of the first Аpproval element use the [Auto-generated page]\[Pre-configured page]  (or [User dialog] element), to display for required user or role, then through the flow on the second Approval element making a decision.

Hello Bao,



Could you please elaborate on your business task?

 

Could you please clarify what you mean by "In our Approval Process"? Is that a business process or another logic? 



And how did you implement theses colors? 

Bogdan,

Um to be clear, I want to ask if there is any way to make an approval process with 3 options

Due to our business, the approval must have 3 options to divine our client into 3 group

  • White: means they are okay with a clean profile
  • Black: means they are having red flags in the profile
  • Grey: means our Top manager will be the one who decides to

Here is the picture for you to understand our business approval right now (but it just a summary, I am not allowed to share more detail on this)

Bao,

 

Your business task could be achieved by business process. 

 

You can use your diagram as the base for the process. 



Instead of the first Аpproval element use the [Auto-generated page]\[Pre-configured page]  (or [User dialog] element), to display for required user or role, then through the flow on the second Approval element making a decision.

Bogdan,

It's works

Thank you!

Show all comments