Hello,
I have a use case where I need to make every field in every section of a mobile application read-only for every user in freedom UI. How can we accomplish it?
Thanks in advance!
Regards,
Yasaswini
Like
Hello,
Column settings in the section wizard are not transferred to the mobile application, same as business rules. You can only make a field read-only via development.
A detailed description can be found at the Academy, property "ReadOnly":
https://academy.creatio.com/docs/developer/mobile_development/customiza…
It is not yet possible to do this using oob tools.
The developers have a task to simplify this process for users, we have fixed your case to the task in order to raise its priority.
First of all, you need to add a module to add the customizations to. You can see how to do that here: https://customerfx.com/article/creating-modules-for-the-creatio-mobile-…
Then, you can add the following to the module, in this example I've made a module for the account edit page and this will make the Type field read only.
Terrasoft.sdk.RecordPage.configureColumn("Account", "primaryColumnSet", "Type", { readOnly: true });
Ryan