Freeze column headers in tabular report

Hello Helical Insight,

I am using Helical Insight 4.0. I have a tabular report created using adhoc interface for which I want to freeze the first row as column headers so that when users scroll down, the columns remain in position. Is there a way to do this?

Thank You,
Jam.

Hello Jam,

Open the report in edit mode. Freezing of column headers can be achieved by placing the following script in the CSS editor section of the report:

.table-bordered>thead>tr>th{

position: sticky;

top: 0;

z-index: 999;

background: #ffffff;

}

Thank You,
Helical Insight.