How to add filter to the virtual Lookups, I had added virtual lookup for contact entityschema. And when I tried to add filter to that, its not filtering out the data.
I have attached my code for the reference,
After adding the filter I am able to see all the values in the Lookup.
Is there a way, to Filter the Lookup values in Virtual lookup column ?
I have even tried with your code also, But I still find the same result. There is no error in console too. I am not sure what is been missed.
The only difference I could see is that I have implemented this virtual lookup in the Detail schema page and you have done this is Edit Page of a section.
Will this make any difference it Filtering the records? Ideally it shouldn't do such way.
This is an old thread, but I wanted to renew the conversation. I'm having the same issue. I've filtered lookups many times this way with no issue.
I have a modal page that inherits from BaseEntityPage. There is a virtual lookup on the page. With isSimpleLookup = true, the lookup won't reference lookupListConfig at all. It just ignores it. If I change isSimpleLookup = false, it will reference lookupListConfig and fire the code for filter. My problem is that since my module is already in a modal window, the lookup cant render as a modal also. I must use a simple lookup. I can filter simple lookups on other modules, but not this one. There must be something different about how the module is being rendered.
Any thoughts on how to get the simple lookup to filter here, or be able to use a modal lookup on another modal page?
More on this. So it looks like this is an issue inheriting from BaseEntityPage. I changed my modal module to inherit from BasePageV2 and now it works. Not sure if this is expected and I'm not sure what other issues I'll face using BasePageV2, as this is "base card schema".
The error indicates that the WebSockets are not properly set up in your local environment.
Please take a closer look at the Setup WebSockets Academy article that describes the process of setting up Creatio configuration files for the correct operation of websockets.
Please let us know in case any additional information is required.
The error indicates that the WebSockets are not properly set up in your local environment.
Please take a closer look at the Setup WebSockets Academy article that describes the process of setting up Creatio configuration files for the correct operation of websockets.
Please let us know in case any additional information is required.
By default in the Calendar section page, it shows only one button "Task" which maps to the edit page of Activity Type - "Task" :
I have added a new edit page of Activity type "Schedule" and overridden the Button Diff to change the caption.
As a result of this, it shows all the edit pages in the Test button DropDown as you can find in the below image. The above code returns all the editPage when count greater than 1.
How to map the "Schedule" edit page button to the Test and remove all the other buttons and the dropdown feature. Similar to how by default "Task" edit page button gets mapped to Task button.
We checked your problem and came up with the following solutions:
1. You may turn off 'Values of the type Lookup' that you don't want to use in your drop-down menu. In this way you'll get just one button to choose. But please be careful because all you previous activities will be shown due to the page that is opened upon clicking on the chosen button. (In your case - Schedule).
2. The second way you can implement it using code (in case option 1 was applied all the changes from option 1 should be reverted before applying the next code):
return page.get("SchemaName") === "UsrActivity1Page"; // Display only activities
});
return result;
} else {
return null;
}
}
}
}
}
}
}
},
]/**SCHEMA_DIFF*/,
methods: {}
};
});
P.S.
In this case you still have a little drop down menu (with one option): UsrActivity1Page - the object page that will be displayed. In this case all your activities remain the same.
We are using two EditPages one is OOTB - "Activity Type - TASK" which is used to create tasks through UI. That's where we need the OOTB button with activity type as "TASK".
Apart from this, we are creating a new custom edit page for Another Activity Type. We don't need to show the button in UI.
If we follow the first option proposed by Bogdon, the business case will get failed.
I need to use both edit pages in the Activity section. But it's enough to show only the OOTB button ("NEW TASK").
We found that sometimes the filters are not showing up on the Calendar page when we switch between the sections. We could see a blank space in the filter area and throws a few errors on the base page.
As you can see in the above image, the filters are hidden.
Error in console,
This is an intermintent issue. Repo rate - 2/5. couldn't able to find the root cause for it as it throws error in the base page.
I had no issues with generating a report in Studio Creatio, Enterprise Edition, version 7.17.2.
Please send us more information to help us reproduce this issue. What we need the most are the name of your Creatio product and its version. Moreover, do you use *.xlsx file templates in your reports? Can you see any error messages in the console after clicking to generate a report?
I have a use case, to data bind the printable and use it across instances. I have dataBinded with the object SysModuleReport,
This is actual dataBind been setup in the instance,
But after the dataBinded and installed in other instance, I could see only Setup report data columns alone be binded but the associated Setup Report Tables are not been binded. As you see in below image,
Can you help me out with this, how to make a complete databind with all the setup in report tables also.
Please email us at support@creatio.com and show us the app. It's impossible to analyze such questions without actual access to the system where bindings were performed and the package developed, unfortunately. We will take the package, install it to the clean app and check the result and if the report tables are not passed to the target website we will check the bindings.
I wanted to understand a bit more about the NotHtmlNote column in the KnowledgeBase table. I tried a few scenarios and notice the following behavior -
Any Knowledge base article is stored as markup in the 'Notes' column and stripped down to pure text (without the mark up tags) and stored in the 'NotHtmlNote' column.
Whenever the knowledge base article is updated & saved, the 'NotHtmlNote' value is re-populated based on the 'Notes' column. This seems to be one way binding and not the reverse. Eg I tried data importing an Excel with junk values in 'Solution without Html tags' column. These junk values did get updated in that column but it never overwrote the 'Notes' column which contains actual mark up to be displayed in the Knowledge base.
I set the NotHtmlNote column value of a Knowledge base article to an empty string directly in the database. The Knowledge base article still perfectly displays on the UI.
Few questions below -
What is the NotHtmlNote column used for?
I would like to directly import Knowledge base articles via the Data base (Through SQL queries). I tried this out by inserting values for the 'Notes' column but ignoring the 'NotHtmlNote' column. This worked perfectly. Pls let me know if there are any gotchas in this approach.
I'm experiencing a problem in the installation process for "Data binding tool for Creatio" market place app, when the configuration dll's compilation starts the installation fails and returns this error:
Autogenerated\Src\GlbDataBindingHelper.GlbDataBinding.cs(323,47) errore CS0246: The type or namespace name 'EntityDataSource' could not be found (are you missing a using directive or an assembly reference?)