If you want to remove easily a single rule inside your interactive report then use this javascript code snippet:
Customized IRR example:
$('a:contains(Vorname ist Null)').parent().parent().remove();
Customized IRR example:
/* Remove Highlight rules */ $('a:contains(MY_RULE1_BLUE)').parent().parent().remove(); $('a:contains(MY_RULE2_GREEN)').parent().parent().remove(); $('a:contains(MY_RULE3_ORANGE)').parent().parent().remove(); /* remove filter */ $('a:contains(My Column filter = \'FILTER\' )').parent().parent().remove(); /* Remove named report */ $('a:contains(Gespeicherter Bericht = \"My filtered report\")').parent().parent().remove(); /* Remove group label text */ $('#apexir_SAVED_REPORTS optgroup[label="Standard"]').attr("label",""); $('#apexir_SAVED_REPORTS optgroup[label="Öffentlich"]').attr("label",""); /* Remove Control Panel Control and make it always active */ $('#apexir_CONTROLS_IMAGE').removeClass('pseudoButtonActive'); $('#apexir_CONTROLS_IMAGE').addClass('pseudoButtonInactive'); /* gReport.toggle_controls($x('apexir_CONTROL_PANEL_CONTROL')); */ $('#apexir_CONTROL_PANEL_CONTROL').hide();