Remove sorting from table

Hello Helical,

I have created a top 10 report in a tabular format in Helical Insight. Now I would like to disable sorting since the report is already sorted and user should not be able to sort. How can I achieve that?

Thank You
Riwim

1 Like

Hello Riwim,

Create an ad-hoc report. Over there in the JS editor put the below-mentioned code

hi_container.set("postExecution", function() {
jQuery('.column-header-anchor').removeClass('sortable');
})

Then the sorting icon and functionality will get disabled like shown below

Thank You
Team Helical