- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2025 11:19 PM
The question is:
- Please create a check box field on Change module form with name PharmaQA.
- It should auto checked when any user select location type is India on change form, other than India it wouldn’t auto select.
I have created the field with the name PharmaQA. but is not autochecking when location location type is india.
I tried to achieve this using Ui Policy and scripting still its not working can any one help pls...
I am also attaching the screen shot what I have done.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2025 11:29 PM - edited 03-02-2025 11:31 PM
Hi @mishrarakes ,
You can create a OnChange Client script on filed " Location"
If(NewValue == "India")
{
g_form.SetValue("u_PharmaQA",true); // Check and Update you field Name what it's there.
}
If my response helped, please mark it helpful and accept the solution so that it benefits future readers.
Regards,
Rohit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2025 11:29 PM - edited 03-02-2025 11:31 PM
Hi @mishrarakes ,
You can create a OnChange Client script on filed " Location"
If(NewValue == "India")
{
g_form.SetValue("u_PharmaQA",true); // Check and Update you field Name what it's there.
}
If my response helped, please mark it helpful and accept the solution so that it benefits future readers.
Regards,
Rohit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2025 01:17 AM
Hi @mishrarakes,
Please check my solution above.
If my response helped, please mark it helpful and accept the solution so that it benefits future readers.
Regards,
Rohit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2025 03:50 AM
Hi @mishrarakes,
Did you tried the solution provided above.
If my response helped, please mark it helpful and accept the solution so that it benefits future readers.
Regards,
Rohit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2025 11:42 PM
Hi @mishrarakes ,
You can create a OnChange Client script on filed " Location"
If my response helped, please mark it helpful and accept the solution.
Regards,
Vishal