Hi,
Sorry for the delay. I will look into adding support for “OR these rules = true” in the trigger area to be able to support such a scenario.
Here is a little code snippet you may use in the meantime – add it to the custom js area:
// Onclick
$("#dffs__x0035_307Compliant, #dffs__x0035_311Compliant").find("input:checkbox").bind("click",function(){
customShowHideTab();
});
function customShowHideTab(){
var a = getFieldValue("_x0035_307Compliant");
var b = getFieldValue("_x0035_311Compliant");
if(a||b){
$("#dffs_tab_1").show();
}else{
$("#dffs_tab_1").hide();
}
}
// On load
customShowHideTab();
Change “_x0035_307Compliant” and “_x0035_311Compliant” for your field names, and change “dffs_tab_1” to match the index (0-based) of the tab you want to toggle.
Alexander