Hi All,
I am trying to create column groups in Interactive Report. I am using the following approach, but it does not work for an IR. it works for a classic report please suggest what is wrong in this.
- Create a Dynamic Action on the corresponding report that fires on the event AfterRefresh
- Execute JavaScript code, which should also be executed on load
apex.jQuery(this.triggeringElement).find('thead').prepend(`
<tr id="tab-group-heading"> +
<th class="t-Report-colHead" align="center" colspan="1"></th> +
<th class="t-Report-colHead" align="center" colspan="5">The Book</th> +
<th class="t-Report-colHead" align="center" colspan="2">Publish</th> +
</tr>`
);
Also, if there is another approach to achieve this, please suggest that too.
I am using oracle apex version 23.1.
Thanks & Regards,
Rohit