Hi All,
How to block the display of Modal box in Manager Mood functionality available in Opportunity page?
Tried setting the enabled property to false in diff as well as tried with Business rule but with negative results. Any other approach, kindly suggest.
Thanks
Anupama
Like
1 comments
Best reply
12:36 Jan 27, 2022
Hi Anupama,
You need to use this:
var element = document.getElementById("OpportunityPageV2MoodContainerContainer") element.style.pointerEvents = "none"
and add some check into the onEntityInitialized method that will trigger the code above.
Best regards,
Oscar
12:36 Jan 27, 2022
Hi Anupama,
You need to use this:
var element = document.getElementById("OpportunityPageV2MoodContainerContainer") element.style.pointerEvents = "none"
and add some check into the onEntityInitialized method that will trigger the code above.
Best regards,
Oscar
Show all comments