Skip to Main Content

Heading Column Groups

Books

Steps

  • 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>`
    );