How to fix the first column data along with header and column search box?

How to fix the first column data along with header and column search box?

IHSLIHSL Posts: 12Questions: 7Answers: 0
edited September 2022 in FixedColumns

hello friends,
I have gone through the datatable documentation and implemented freeze pane feature for the first column. I could make the first column header and data fixed but the search box under the first column header is moving when i scroll the table. Any help would be much appreciable.

Answers

  • allanallan Posts: 61,438Questions: 1Answers: 10,052 Site admin

    See this example. Use with:

        table.dataTable tfoot {
            display: table-header-group;
        }
    

    to display the footer row as a header.

    Allan

Sign In or Register to comment.