- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2024 03:46 AM - edited 10-25-2024 12:17 AM
Hello friends,
I am working on a requirement.
How to achieve this.
Thanks
Jenish
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2024 05:40 AM
Hi @Jenish2 ,
You can implement this functionality by creating onLoad client script.
function onLoad() {
if (g_user.hasRole('manu_role') ) {
// Remove the specific choice for "Manu Role" users
g_form.removeOption('your_choice_field', 'value_of_the_choice_to_remove');
}
}
Please mark this as "correct" and "helpful" if you feel this answer helped you in anyway.
Thanks and Regards,
Ashish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2024 05:40 AM
Hi @Jenish2 ,
You can implement this functionality by creating onLoad client script.
function onLoad() {
if (g_user.hasRole('manu_role') ) {
// Remove the specific choice for "Manu Role" users
g_form.removeOption('your_choice_field', 'value_of_the_choice_to_remove');
}
}
Please mark this as "correct" and "helpful" if you feel this answer helped you in anyway.
Thanks and Regards,
Ashish