Hi All
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-11-2024 04:49 AM
I Have 3 fields.
1. user--that user Reference table
2.Region-----that is Region Reference table
3.Team------that is select box under select box (a,b,c,d,e)
When user Region is 'India' autopopup is a,b
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-11-2024 05:04 AM
What's the actual request here?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-11-2024 05:14 AM
Whenever Request by User's is India autopopup Team a,b,c
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-11-2024 05:36 AM
Hi @basha shaik ,
You can write onChange Client script on Region field -
function onChange(control, oldValue, newValue, isLoading) {
if (isLoading || newValue == '') {
return;
}
if(newValue == "provide sys id of india region, if region is reference field"){
g_form.setValue('team', 'c');
}
}
[Notes: Remember Select Box type Variable we can only select only 1 choice at a time. Hope this help you.]
Mark Correct if this solves your issue and also mark
Helpful if you find my response worthy based on the impact.
Regards
Moin