Notifications
Announcements
function showHideFieldsBasedonCondition(executionContext) { var formContext = executionContext.getFormContext(); if (formContext.getAttribute("bosch_booleanfield").getValue() == true) { formContext.getControl("bosch_showorhidefield").setVisible(true); } else if (formContext.getAttribute("bosch_booleanfield").getValue() == false) { formContext.getControl("bosch_showorhidefield").setVisible(false); } }