- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2019 06:55 AM
Hi All.
I wish to make a variable field (a Disclaimer message) on a record producer read only I do not wish for users to amend the wording
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2019 07:07 AM
1. Create Catalog UI policy and add UI Policy action to set read only
OR
2. Create catalog onLoad Client script and add below line of code:
g_form.setReadOnly('disclaimer',true); // replace disclaimer with your variable name/
Please mark as Correct Answer and Helpful, if applicable.
Thanks!
Abhishek Gardade
Hexaware Technologies
Abhishek Gardade
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2019 09:24 AM
Perfect Abhishek.
Thank you