How to add column names in a list view under filtering?

0
I have a list view with a table in each list item. I need to display column names over the list. I can add column names on top of the listview widget, but in this case, thee filtering panel will be between the table and the column names. Is there any way to add these column names in a list view under the filtering panel, but not to repeat it in every list item?
asked
1 answers
1

I think you will need to use CSS to achieve this. I just checked and it was possible using below procedure
Place your header table and listview inside a container with relative position. Now you can set header table with position absolute and set its top: value to move it below the search filter row. You will also have to give some margin between filter row and the listview’s main body so that header table can come within that space.

answered