
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2018 11:37 PM
Dear Folks,
We want to make all the variables of the form as read only after submitting the service.
Please help me to achieve the same.
thanks & Regards,
Ankit Kumar
Solved! Go to Solution.
- Labels:
-
Field Service Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2018 05:32 AM
Hello ,
You can use catalog ui policy to make variable read only and also you can use client script
code:
g_form.setVariablesReadOnly(true);
Please mark it as correct or like if it correct
Regards ,
Sindhu B

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2018 05:36 AM
There are OTB client script available for the same. Just we need to activate it.
function onLoad() {
g_form.setVariablesReadOnly(true);
}
Thanks & Regards,
Ankit

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2018 05:41 AM
Hello Ankit,
Thanks for your response.
Regards,
Sindhu B