How to Remove Value from field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2022 11:16 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2022 03:31 PM
Hi Chanikya,
I think simple clearValue('Your Field Name') in Client Script will work
var parent = g_form.getValue("parent");
if (parent=='empty'){
g_form.clearValue('child');
}
Mark Correct or Helpful if it helps.
***Mark Correct or Helpful if it helps.***
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2022 01:37 AM
Hi Yousaf,
I am Not asking that to clear Child field. let me explain clearly
Example :
In PR Parent field I took : A , B , C
In PR Child field I took : AAAAA , BBBBB , CCCCC values : Here "AAAAA" of Parent is "A" .
So If I remove "A" in 'PR Parent' then it's related child value "AAAAA" only should be removed from 'PR Child' field . Other values ( BBBBB, CCCCC ) should not be removed from PR Child, because that values of Parents still there in PR Parent right .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2022 01:14 AM
any suggestion/ and updates please

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2022 01:20 AM
Can values manually be added in PR child- or it will only be populated based on PR Parent field.
Aman Kumar