Hello, i am using a free trial version of creatio this time, now there is a problem that i am trying to solve
you see what i want and what is currently shown through images is what i want, where one field changes the rest with the same name changes, but im also trying to add in a handler for this field ...MoreLess
How can I capture the newly changed field value before saving a record in a crt.SaveRecordRequest in Creatio Freedom UI? Currently, I am getting the old value instead of the new one.
Alternatively you could use a change request handler, which gives you both the new and old values as properties of the request. See https://customerfx...MoreLess
Is there a handler used when loading a List element for the first time or when reloading the list, including after changing quick filters? The crt.LoadDataRequest handler appears to only be called when reloading the list or loading in additional records via the infinite scroll mechanic, but not on the...MoreLess
Hi Pavlo, thanks - I think we really need some more consistency in what triggers handlers and what doesn't. Performance implications of overriding...MoreLess
If you need to call some code exactly once when a record is created, I'd suggest moving the whole logic to backend. Specifically EntityEventListener...MoreLess
Hi Mohamad, You can use AsyncPump.Run() to call async methods synchronously in your event listener. Also you can override OnInserting rather...MoreLess
I'm looking to access the `onclick` / 'FolderTreeVisibleChanged' handler of the Folders button on Freedom UI list pages. What is the name of the handler method that i can use?
I need to create a custom handler for a button. It is necessary that after the button is clicked, two actions are performed sequentially: first, the record should be saved, and then a process should be triggered. My code isn't working. Could you please help?