Hello everyone.
I know that we can to do it:
var fc = executionContext.getFormContext(); var warningId = "warningid"; var accountName = fc.getAttribute("name").getValue(); var phone = fc.getAttribute("phone").getValue(); if (accountName === nul || phone === null) { fc.ui.setFormNotification("Name or Phone is empty", "WARNING"); } if (accountName !== null && phone !== null) { fc.ui.clearFormNotification(warningId); }
But, if we have tabs and sections.
I means, if we have some tab with 3 sections. Into of each section we have many fields. Is there a way to loop these tabs or sections?
e.g.
var tabMain = fc.ui.tabs.get("tab_main"); var sectionProfile = tabMain.sections.get("sec_profile");
I would like to show in a single string several lines with the error or errors.
Thank you.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 290,522 Super User 2024 Season 2
Martin Dráb 228,441 Most Valuable Professional
nmaenpaa 101,148