- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2024 04:47 AM
Hi, I want to have all the variables on the RITM to be editable, but once the RITM is closed then all the variables will then be read only. Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2024 04:54 AM
Hello @charles1010 ,
Create catalog client script onload and use below code
if(g_form.getValue('state') == '3'){ // 3 means closed complete check in your choice table whether it is same
g_form.setVariablesReadOnly(true); // mark all variables as readonly
}
Thanks,
Valmik Patil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2024 04:54 AM
Hello @charles1010 ,
Create catalog client script onload and use below code
if(g_form.getValue('state') == '3'){ // 3 means closed complete check in your choice table whether it is same
g_form.setVariablesReadOnly(true); // mark all variables as readonly
}
Thanks,
Valmik Patil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2024 04:55 AM
Hello @charles1010 ,
Create catalog client script on load and use below code
if(g_form.getValue('state') == '3'){ // 3 means closed complete check in your choice table whether it is same
g_form.setVariablesReadOnly(true); // mark all variables as readonly
}
Thanks,
Valmik Patil