Has anyone encountered the following problem with the Advanced filter for Creatio by DEVLAB:

 

- When you CREATE a filter/folder,  by default it takes the ALL column configured view  =   which is OK

- You may change the columns view and SAVE the folder view.

- When you click the folder, the configured column view of the filter is displayed with the data.

- When you EDIT the filter, change a criteria and click APPLY....the configured view is taking the Default ALL collumn configuration (GLITCH)

- But if you SAVE the filter with the updated criteria....then the column view is back to what it was configured

 

 

Can I communicate with the developer(s) who did that to make an update ?

 

Also...When I UNINSTALLED the package and RECOMPILE....the system still has the GLITCH. (outch !!!)

 

Like 1

Like

2 comments

Hi Francois,



Thank you for bringing this matter to our attention.

The developer has resolved this issue and published the new version of the application on the Creatio Marketplace.

 

Please install the latest version via the following link: Advanced list setup for Creatio

Hello...While fixing the previous bug...I believe another one came up.

When accessing a CASE (or any object), if you click on the ACCOUNT of the CASE and come back...for some reason the system doesn't know where it was and keeps displaying the Loading Icon with a brighter screen.

 

He're a short video to help you understand the problem :



vtq-media.com/Video-Library/BUG-display-when-returning-from-a-detail-page.mp4

 

Can you fix that ?



SEE CASE below opened to Support@creatio.com 

Case #SR-01273076: VTQ-CANADA - Bug display when returning from a detail page

 

Oleg Drobina  (Creatio Support)

2/29/2024 at 1:31 PM

Hello Francois,



Thank you for the video and the explanation!



After studying the behavior, we could reproduce it out-of-the-box after installing this Marketplace addon https://marketplace.creatio.com/app/advanced-list-setup-creatio. This addon directly provokes the behavior you've described.


 

Show all comments

Hello community,

 

We have an advanced dynamic folder created in a custom section. 

If a user wants to see this folder, he needs to click "Filters/Folders" >"View Folders"> and choose the dynamic folder.



Is it possible to add a custom button that will apply the dynamic folder filter when it is clicked? Basically, we want to apply the dynamic folder filter in 1 click instead of 3

Like 0

Like

4 comments
Best reply

Hello,

 

You need to call the showFolderTree method in the click event of your button:

...
{
                "operation": "insert",
                "parentName": "ActionButtonsContainer",
                "propertyName": "items",
                "name": "ShowFoldersButton",
                "values": {
                    "itemType": Terrasoft.ViewItemType.BUTTON,
                    "caption": { bindTo: "Resources.Strings.ShowFoldersButtonCaption" },
                    "click": { bindTo: "showFolderTree" },
                    "layout": {

As a result clicking on the button will simulate the same click event on the "Show folder" button.

hi Shivani Lakshman,



Yes, it is possible.



This is the table that stores the filter conditions "CustomSectionName" + "Folder". On the button click event, the dynamically created folder name has to be sent to this table and the section grid has to be loaded accordingly.



Instead of re-doing the task that has been implemented via OOTB "FilterModule", it is suggested to utilize the No-Code tools in this case, considering X number of dynamic folders. If it is for one folder, then please utilize the ESQ (for the customsectionFolder table).



In another way, a default filter can be set to a section. So when a section is loaded, it applies the filter and loads the records.





BR,

Bhoobalan Palanivelu.

Bhoobalan Palanivelu,

 

Thank you for the response. I do not want a default filter applied or add additional filters by using getFilters methos. I want the following on the UI when a button is clicked.



Is there a reference to get the below on the UI?

Hello,

 

You need to call the showFolderTree method in the click event of your button:

...
{
                "operation": "insert",
                "parentName": "ActionButtonsContainer",
                "propertyName": "items",
                "name": "ShowFoldersButton",
                "values": {
                    "itemType": Terrasoft.ViewItemType.BUTTON,
                    "caption": { bindTo: "Resources.Strings.ShowFoldersButtonCaption" },
                    "click": { bindTo: "showFolderTree" },
                    "layout": {

As a result clicking on the button will simulate the same click event on the "Show folder" button.

Oleg Drobina,

 

Thanks Oleg, You are a life saver!

Show all comments