In Edit Page, there is asyncValidate method which validates the record asynchronously before saving. Now I want the same on deleting of records on detail. Is there any asyncValidate method on detail grid I can inherit? I want to perform asynchronous validation before deleting records on detail grid.
I create the edit page which contain editable detail on it
When i run this page from section or from process i can edit this detail
when i run it from another edit page by the link in noneditable detail i cant edit it there is no add button and when i enter the detail the data disapear.
Usually, when the data is disappearing, I have had the wrong columns set in the Detail setup in the Page Wizard. If the detail is looking for the wrong columns in the two sections, the link between them is broken. and it will create the records but not show them. It is hard to know without more information.
Creatio does not like it when the UsrName is changed. You will need to change it back. You can change the title, but you cannot change the Name. You can, however, not use it. If you create a new String, you can change the Displayed Value in the Advanced Settings for the object to the new String you made. This changes the blue links to the new string instead of the UsrName.
It is fine to change properties like required at application level to no. If the field is being used as the display value (like the name field) then having it blank would mean nothing would show in a lookup (if its used as a lookup somewhere).
BTW it's usually a good idea to not rename column or object names and only change the titles once they're created.
I changed back the names to UsrName using section wizard (which I later realized shouldn't have changed them back). Then I compiled the current workspace from Advanced settings to see if still any error occurs.
Here are some screenshots
Now The errors are because I changed back the name to UsrName, it says that the old Name - UsrClaimant don't exist.
I also opened the source code where these errors were pointing to -
But I can not edit the source code in Cloud demo instance.
Is there any way to change the source code or any process to correct these source codes?
As Reid mentioned, we do not recommend to change the name after the section being created.
If such an issue appears you can simply generate source code for all objects that are mentioned in compilation errors and compile modified items. If all necessary items were not removed this should fix the issue
Seems that you have a huge number of processes that use the timer element and that's why the scheduler can't process some of them in time and also I can see that the next time the timer got started is in the morning after several days. Please apply these two recommendations and there shouldn't be any problems with the timer in the future:
1) Please find the "threadCount" parameter in the root Web.config file of the application and change the value of this parameter from 5 (default) to 10 and check the result after that. We do not have a formula so to count the needed value of this parameter and if it won't help you need to try to change the value to 15 and check the timer after that.
2) The fact that the timer job was executed in the morning can tell us that your application goes to the "idle" mode at night (Idle Timeout in IIS).
If this is a cloud-based application please email us at support@creatio.com and ask us to disable the "idle" mode for your app and also modify the value of the "threadCount" parameter. If this is an on-site application please apply needed changes to the root web.config file and disable IIS timeout in the IIS settings.
Our client has an issue that any change in object permissions is not being recorded in Audit Log, despite the fact that all the system settings for audit log are enabled. Is there anything missing besides system settings that need to be enabled in front-end?
To log changes in object permissions you need to make sure that "Log entity access rights management events" system setting is enabled. It's code is "UseAdminEntitySchemaOperationLog".
Please note that only changes applied in "Use record permissions" will be logged.
In order to log changes in column permissions there, you will have to turn on the "UseAdminEntitySchemaColumnLog" system setting.
As for the Operation Permissions changes, they are not logged in Audit Log.
Hi. We are starting the NFR licenses cloud implementation. How should we set up separate development / testing / pre-production / production environments ?
I guess that it would be better for you to contact your Creatio manager and discuss this information with him, depending on quantity of licenses available and your business needs.
Please note that you can create only one website for one Customer ID if you have less than 20 full-licenses active on it. In this case if you need to create Test or Dev website you have to request an additional CID and get at least one license on it.
You won't be able to catch the response on the bulk email using the signal process element (since this data is added to the database directly) however you can create a process with the timer that will review the "Response in Email" object and check if a new "Unsubscribe" response was added. You can create a time parameter and use it as a filtration condition (in the "Created On" field). So you can run this process once per hour, read the collection of records in the process (from the "Response in Email" object) and use this data.
You won't be able to catch the response on the bulk email using the signal process element (since this data is added to the database directly) however you can create a process with the timer that will review the "Response in Email" object and check if a new "Unsubscribe" response was added. You can create a time parameter and use it as a filtration condition (in the "Created On" field). So you can run this process once per hour, read the collection of records in the process (from the "Response in Email" object) and use this data.
I am searching for any article or guidance to add an confirmation message when user tries to change status in a section record, the system first asks user via confirmation message(pop up). The pop message should state whether if you are sure to change state or not with Yes or No option.
I only that there will be use of localizable strings in object schema but how it all adds up to create a pop message.
Yes, I am looking for the exact thing. Currently I want to add a Prompting for Choices confirmation dialog written in your article to a section after change in status.
Can you please tell me if any of Creatio CRM section have this in-built (confirmation message) so that I can find the code to understand how to bind functionality or process to the YES or NO button?
Yes, you can use that code in a section, page, or anywhere in Creatio. To do a Yes/No prompt, you'd add code like this (from the article I posted)
Terrasoft.showConfirmation("Would you like to do the thing?", function(result){if(result === Terrasoft.MessageBoxButtons.YES.returnCode){// the user selected "yes" - do something here if needed}else{// the user selected "no" - do something here if needed}}, ["yes", "no"], this);
The code listed above and in the linked article are for client-side code (code that would exist on a page). It is possible to send a message from a process that would get received on a page, but that does require some programming on both sides (a script task in a process and also modifying code on a page, or somewhere in the client to receive the message from the process and display the prompt - however, there's no way to get the result of the prompt back to the process so it can proceed according to the value selected). This article explains how to send a message from a process to be received in the client https://customerfx.com/article/sending-a-message-from-server-side-c-to-…
We recommend using the following tools to monitor the performance:
Zabbix is an open-source monitoring software tool for diverse IT components, including networks, servers, virtual machines (VMs) and cloud services. Zabbix provides monitoring metrics, among others network utilization, CPU load and disk space consumption.
Grafana is the open-source analytics and monitoring solution for every database. It provides charts, graphs, and alerts for the web when connected to supported data sources.
Please, let us know in case any additional information is required.
In order to delete an address on Account page, I need to click Actions first, then press the Delete button.
I would like to use a hotkey for this. How could I do it? I've seen this question, but don't know how to adapt it to my needs. Should I modify the code of AccountPageV2 for this? How to get the selected address row?
Or maybe this improvement is already planned in Creatio's next releases?
In order to implement the requested functionality please create a replacing module for "AccountAddressDetailV2" and override "onGridDataLoaded" method in it ( It's being called after rendering).
In this method you can retrieve a detail's grid and get the DOM element from it. You can assign your own handler on it's keydown event whcih will call "this.deleteRecords()" after pressing the needed button.
Here is the example for the "Delete" button in "AccountAddressDetailV2":
In order to implement the requested functionality please create a replacing module for "AccountAddressDetailV2" and override "onGridDataLoaded" method in it ( It's being called after rendering).
In this method you can retrieve a detail's grid and get the DOM element from it. You can assign your own handler on it's keydown event whcih will call "this.deleteRecords()" after pressing the needed button.
Here is the example for the "Delete" button in "AccountAddressDetailV2":