- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2023 06:35 AM - edited 11-28-2023 06:46 AM
Hi Team,
I have question variable which is Does this issue related to Avaloq or Iress if i select Avaloq then under "which offering is affected particular offering needs to mention since we have only service offerings related to Avaloq and but when i select the iress same offerings are listed for iress i need to hide those until iress realated services not confirm . Please suggest me how to do that
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2023 06:47 AM
Snehal basically you need to play with the reference qualifier like this:
javascript: getServices(current.variable.which_offering_is_affected); //please check the backend name
function getServices(data){
if(data == "Avaloq"){
return "parent.name=Avaloq";
}else{
return "parent.name=Iress"
}
}
I hope you get the idea how to achieve this!
If my answer solved your issue, please mark my answer as ✅ Correct & 👍Helpful based on the Impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2024 07:57 PM
Hi Sai ,
Did you find my solution useful please Accept as solution else mention the comment below .
Thank You !