Announcements
No record found.
function toggleQuickViewLabel(executionContext) { var formContext = executionContext.getFormContext(); var lookupValue = formContext.getAttribute("YOUR_LOOKUP_FIELD_LOGICAL_NAME").getValue(); var quickViewControl = formContext.ui.quickForms.get("YOUR_QUICK_VIEW_CONTROL_NAME"); if (lookupValue != null) { // Show Quick View quickViewControl.setVisible(true); // Wait until it is loaded to hide the label quickViewControl.addOnLoad(function () { var labelElement = document.querySelector("label[for='QuickviewControlYOURCONTROLID']"); if (labelElement) { labelElement.style.display = "none"; } }); } else { // Hide Quick View quickViewControl.setVisible(false); } }
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Stars!
We are thrilled to have these Champions in our Community!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
11manish 135
André Arnaud de Cal... 86 Super User 2026 Season 1
Martin Dráb 58 Most Valuable Professional