Hi community,

 

I need to show only active users in the Owner field of the activity mini page.

 

How can I do that?

 

Thank you!

Like 1

Like

2 comments

I could not find the field on contact record for this so I created a lookup with record status (active/inactive or something similar) and then used the add filter business rule on the mini page to only display specific owners.

Hi, Clara Fioranzato! 

 

This field is implemented by development methods, so unfortunately you cannot change it with basic methods. 

 

But you can add this filtering condition by creating a replacement view model schema for the page. To do this, use the instructions below with an example of such a setting:  

 

https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platform/platform-customization/classic-ui/record-page/field/examples/set-up-filtering-of-lookup-field-values 

 

We also recommend reading a similar post on our community where this topic has already been raised. 

https://community.creatio.com/questions/show-only-active-users-owner-activity-filed 

 

Best regards, 

Halyna!

Show all comments

Hi Academy,

 

We would like to make one of the sections in the 'Connections' on the activity mini page mandatory when the category is "task".

Do you have any suggestions on how we can accomplish this?

 

Thank you in advance.

Like 1

Like

2 comments

Hello,

 

It depends on which column should be required here. One particular example: this method can be added to ActivityMiniPage:

save: function(callback, scope) {
				var opportunity = this.get("Opportunity");
				if (opportunity) {
					this.callParent(arguments);
				} else {
					Terrasoft.showInformation("Opportunity is required");
				}
			}

In this case saving of the mini page is not possible in case an opportunity is not connected to an activity and the information message will be shown on the page.

Hi Oleg,

 

Thank you, it works!

Show all comments

Hello,

 

Is it possible to create mini page for 'view record' in Freedom UI?



We also have mix of Freedom-Classic now, but even if 'view record' mini-page is created for Classic page, it is not displayed in other places (probably because of Freedom page exists for that section already). Maybe it is possible to use Classic mini pages of Account/Contact even if Freedom page is created?

 

Kind regards,

Vladimir

Like 4

Like

1 comments

Hello,

 

At the moment, there is no possibiliy to set up a mini-page just for viewing records in the system. Currently you can create a mini-page for creating a new record and set up a mini-page for editing an exisiting record with the help of a business process.

 

We also do not plan to support mini pages for 7x (Classic UI) with the Shell enabled, as this functionality is already implemented and is available in Freedom UI (starting from version 8.0.8).

We recommend you to configure the needed section in Freedom UI and to set up the required mini page for creating a record there.

You can learn more about it in this Academy article.

Show all comments

Hi Community,

The normal behaviour of a MiniPage in Freedom UI, is that after filling the data and saving, the Section List Page is opened.

We want that after the Clicking Save on the Mini Page, the created record (Form Page) opens.

How can this be acheived ?

Sasori

Like 0

Like

2 comments

To accomplish this you’ll need to add a handler for the save event, see https://customerfx.com/article/adding-code-to-the-save-event-of-a-creat…

Then in that handler you can open the edit page. See https://customerfx.com/article/adding-code-to-the-save-event-of-a-creat…

Ryan

Thank you very much for the very useful information Ryan.

You have provided the same link both times.

Did you intend to insert a separate link for the handler that opens the Edit Page ?

Sasori

Show all comments

Hi, we´re using a mini page to create requests but we are looking for a way to move from the mini page to the form page of the request. ive tried using two buttoms, one with the save data action and other with the "continue in next page" action but im having ussues with the page filtes on the form page. this could work if we save the record and the minipage stays open but it close after saving the record. 

Like 0

Like

1 comments

Dear Sean,

 

The following button was added in 8.0.10. This button will help to you to move from mini page form to form page quickly.

 

Regarding the mini pages closing after the data was added. This is the basic logic of mini pages, they were created to collect quick information, add it to the record and close.

If you want the page to stay open, please consider other options, like adding data directly on the record. 

 

Best regards,

Creatio Support Team

Show all comments

Hi,



On our contact page we have business rules regulating the business & mobile phone.



If mobile phone not filled in, business phone is mandatory and vice versa.



On classic UI page, the mandatory " * " signal dynamically disappears when filling in the form.



This does not happen on the new Freedom UI minipage, in the picture here below, the * should have disappeared in front of mobile phone, as the business phone is filled in.



(It will properly save though, in terms of data, the business rules work).



Like 0

Like

1 comments

Hello,

 

Thank you for sharing this information with us. We have created a task to have the responsible R&D team address this behavior in future releases.

Show all comments

Hi,

 

I created a Mini Page in the Freedom UI, and I would like to open it with the 'Open edit page' element in a business process, but the mini page is not to be found in the dropdown for 'Which page to open?'. Is it not possible to open a mini page from a process?

 

Thank you in advance!

Like 0

Like

1 comments

Good day,

 

Thank you for your question.

Unfortunately, there is no such functionality for your task currently present in the OOTB application of Creatio.

 

Currently, you can achieve such a thing only by means of development.

 

Thank you.

 

Show all comments

Hello community,

Can we have conditions for mini page for one particular edit page when we have multiple edit pages?

 

Thank you in advance 

Yasaswini I 

Like 0

Like

3 comments

Hello, 

 

Could you please elaborate a bit on your task or provide us with a screenshot of what should be implemented?



Best regards,

Anastasiia

 

I need mini page for only Enterprise edit page. 



Yasaswini I

Yasaswini Indurthi,

 

there is only relation between the mini page and the whole section page, so, unfortunately, there is no possibility to create separate miini cards for every edit page of the section.

 

As a result - there can only be one mini page for the section.

 

Regards,

Gleb.

Show all comments

Hi!

How to add mini pages to the package? For further transfer between environments

Like 0

Like

3 comments

As long as the package you want this to go into is the current package when you use the Section Wizard to create the mini pages, it will go into that package. You should see the mini page client schemas in the package. 

Ryan

Ryan Farley,

Yes, that's right. But when I install the package, these checkboxes are missing. Because of this, it seems that this action must be somehow fixed in the package.

The settings for using the mini-page are stored in the data of the "SysModuleEdit_SysModuleEditManager" type and are displayed in the "Mini page modes" column.
Show all comments

I want to build an 'add' client wizard for our customer service to make it easy for them and also to prevent mistakes.

 

The first step would be to insert zipcode and housenumber, then it will make an API call to see how many adresses match these two parameter. 

 

The list that is returned, if the list is > 1 it should show you the information from the array and make you able to choose 1 of the options. 

 

If the list is 1 it should automatically pick the only available option.

 

I understand how to create the business process but combining this with a user interface is still difficult for me, is this even possible? 

Like 1

Like

3 comments

Hi, take a look at this article, I believe that there you can find a piece of useful information. It is written for the Freedom UI page, however, in earlier versions, you can just use XMLHttpRequest for sending the request, wait for a response, and process it.

The link somehow is broken now.

Pascal,

Here you are - link

Show all comments