- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2025 09:52 PM
Hi,
One field needs to relabel on form based on the condition.
where issue type= risk event
the issue owner field label needs to relabel to Risk event manager.
please suggest a solution
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2025 10:02 PM - edited 11-24-2025 10:10 PM
Hi @armanoj
Here is the pseudo code for client script on Change. You can try this and tweak the fields as per your use case:
function onChange(control, oldValue, newValue, isLoading) {
if (isLoading) return;
if (newValue === 'risk_event') {
g_form.setLabelOf('issue_owner', 'Risk Event Manager');
} else {
g_form.setLabelOf('issue_owner', 'Issue Owner'); // Default label
}
}
If you find this answer useful, please mark it as helpful/solution accepted.
Thanks and Regards,
Mohammed Zakir
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2025 10:10 PM - edited 11-24-2025 10:13 PM
I tried the same not working, need the change workspace
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2025 10:12 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2025 10:16 PM
GRC Issue triage