I am trying to automatically add a table to a report after the end of the loading process. I tried that using the jQuery .append() Method on the report (context.$report):
function consumeEvent( context, event ) {
if (event.name == 'ic3-report-after-build') {
context.$report.append( "<table>...</table>" );
}
}
Unfortunately nothing happens. What am I doing wrong?