now the above are form responses in creatio, Is it possible for multiple users to edit the responses? Also is it possible to store different versions of those edits and go back to those old edits ? is it possible to restrict users to view only their responses and edit those only?
I want to see a list of departments when I click on the "Plus button," so that I want to select several departments, add them to the bottom section and automatically send emails and notifications to the users of these departments that I have selected
How can I restrict the "send mail" action so that for all processes, e-mails can only be sent to addresses with a specific domain, and if another domain is used, a pop-up with an error message appears when saving the process?
Unfortunately, it's not possible to display a pop-up showing an error message when attempting to save a process that is restricted to a specific domain. However, you can achieve something similar by implementing your business process logic.
For example, you can store an email address in a parameter and check if the email address contains a specific domain. If it doesn't, you can change the parameter to an empty value. Then, uncheck the "Ignore errors on sending" option in the "Send email" action to display a pop-up if any errors occur. This way, you will receive a pop-up with an error message because having a different domain in the email address will result in an empty recipient, which leads to an error.
I have an integration with another vendor, where the integration requires a certificate to carry out the integration. There are 2 certificates for each provider. Strangely only one is running normally, the other is intermittent. sometimes it works, sometimes it doesn't. My question is, is there any special configuration for certificates (.pfx) inside creatio or IIS?
Now that lists have a multi-select feature, how can one access the DataTable_SelectionState for that list and pass it to a BP? The available button actions don't seem to have an option specific to sections and I'm not yet seeing any samples out there on how to do it in code.
You can use the following in a request handler for the action buttons for the list - this will return an array of the selected Id values:
const selectedIds =(await request.$context.DataTable_SelectionState).selected;// selectedIds will be an array of Id's for any selected records
As for getting them to a process, you could pass in as a string to a param or execute the process separately for each Id. See here for executing a process, if needed.
You can use the following in a request handler for the action buttons for the list - this will return an array of the selected Id values:
const selectedIds =(await request.$context.DataTable_SelectionState).selected;// selectedIds will be an array of Id's for any selected records
As for getting them to a process, you could pass in as a string to a param or execute the process separately for each Id. See here for executing a process, if needed.
Hi everyone, I have a problem with the 360 application in my local instance of creatio.
It's strange because I've already reinstalled it and sometimes it opens the workplace sections (although they are the classic version), logs out, and when I try to enter the form page again, it stays loading in an eternal loop
For a new app on version 8.1, I'm trying to lock up all fields on a page based on the record condition. I have a Locked by field on the record and if the field is empty or different than the current user, I want to make the whole page read only.
I was able to do that on previous versions by adding some code to the page. At high level I needed to add the IsModelItemsEnabled attribute and have a "setCardLockoutStatus" method that triggers when the UsrLockedBy field changes. I also need to do a merge operation on the CardContentWrapper to set the generator value to DisableControlsGenerator.generatePartial.
What page code I need to write to accomplish something similar on 8.1? Or can that be accomplished now with no code?
The way of locking the whole page you've described is based on using the "CompleteCardLockout" feature. Unfortunately, it is not available to use on the Freedom UI pages.
However, you may implement it using Page Designer business rules. It is possible to specify a rule that makes all the input fields editable/read-only based on the field value condition, for example:
The way of locking the whole page you've described is based on using the "CompleteCardLockout" feature. Unfortunately, it is not available to use on the Freedom UI pages.
However, you may implement it using Page Designer business rules. It is possible to specify a rule that makes all the input fields editable/read-only based on the field value condition, for example:
Thanks Natalia. I do have a lot of fields on the page so I was looking for something like the CompleteCardLockout feature, but business rule will do. Do you know if there are any plans to have that feature on the freedom UI version? It takes some maintenance to keep those rules updated every time fields are added to the page.
Unfortunately there is no example of adding such a filter to a custom tab (along with the action handler that will save the selected result in the database). We already have a task for our R&D team to add such a possibility to add advanced filters to details on the page. We will also inform them about this question to prioritize the task.
Thank you for helping us in making the app better!