Open mini page of the Classic UI by clicking a button in the Freedom UI section
Hi
I am currently working on a functionality within our Creatio system where I need to open a mini page that is part of the Classic UI by clicking a button in a Freedom UI section. Despite my efforts, I have encountered some challenges in achieving this integration.
Could you please provide guidance or any relevant documentation on how to successfully link and open a Classic UI mini page from a button click within a Freedom UI section?
Any tips or best practices you could share would be greatly appreciated.
Thank You.
Like
Hi Satyam,
You can try using crt.7XRequest with action 'EditRecord'/ 'AddRecord'. Please see this article on community : https://community.creatio.com/questions/base-function-lookup-value-clic…
Yurii Sokil,
The Terrasoft modules are also still available. You can use the same code as in classic UI, something like this will work in a Freedom UI request:
Terrasoft.MiniPageListener.open({
parameters: {
entitySchemaName: "Activity"
},
valuePairs: [
{ name: "Type", value: "fbe0acdc-cfc0-df11-b00f-001d60e938c6" },
{ name: "Contact", value: contactId },
{ name: "Account", value: accountId }
],
miniPageSchemaName: "ActivityMiniPage",
operation: Terrasoft.ConfigurationEnums.CardOperation.ADD,
showDelay: 0,
miniPageSourceSandboxId: null
});Ryan