Super Sale Limited Time 50% OFF for All-Access Plans
Save 50% Now

fixed table header in KTDataTable


Hi team ,

How to apply fixed table header in metronic kt-datatables:

component url : https://preview.keenthemes.com/metronic8/vue/docs/#/kt-datatables.

i want to make tbody scrollable with fixed thead.

I am looking forward to the solution and right approach.


Text formatting options
Submit
Click any option to insert into your comment. Select text first to wrap it.
  • **text** to make things bold
  • *text* to emphasize
  • ### Heading to make headings
  • [link text](url) for links
  • ![alt text](image-url) to paste in an image
  • - item to make a list
  • 1. item to make an ordered list
  • > quote to quote somebody
  • `code` for single line of code
  • ```js ... ``` for JS code block
  • ```html ... ``` for HTML code block
  • ```scss ... ``` for SCSS code block
  • ```php ... ``` for PHP code block
  • --- for a horizontal rule
  • happy  :)
  • shocked  :|
  • sad  :(

Replies (1)


Hi Abhishek!

At the moment our component doesn't support such functionality. We will consider adding such functionality in upcoming releases.

For now, to implement it you can follow the steps below:

  1. Firstly you can configure the table to display all table data.

  2. Set a rows-per-page props to data array length.

    :rows-per-page="tableData.length"
  3. Then you can achive the rest using styles.


  4. <style>
    .table-responsive {
    overflow-y: auto;
    height: 110px;
    }
    .table-responsive thead tr {
    position: sticky;
    top: 0;
    }
    table {
    border-collapse: collapse;
    width: 100%;
    }
    th,
    td {
    padding: 8px 15px;
    border: 2px solid #529432;
    }
    th {
    background: #abdd93;
    }
    </style>


Your Support Matters!

We will highly appreciate your Metronic Review on Themeforest.
Please go to Themeforest Downloads page, select Metronic & leave your feedback.
Text formatting options
Submit
Click any option to insert into your comment. Select text first to wrap it.
  • **text** to make things bold
  • *text* to emphasize
  • ### Heading to make headings
  • [link text](url) for links
  • ![alt text](image-url) to paste in an image
  • - item to make a list
  • 1. item to make an ordered list
  • > quote to quote somebody
  • `code` for single line of code
  • ```js ... ``` for JS code block
  • ```html ... ``` for HTML code block
  • ```scss ... ``` for SCSS code block
  • ```php ... ``` for PHP code block
  • --- for a horizontal rule
  • happy  :)
  • shocked  :|
  • sad  :(
Text formatting options
Submit
Click any option to insert into your comment. Select text first to wrap it.
  • **text** to make things bold
  • *text* to emphasize
  • ### Heading to make headings
  • [link text](url) for links
  • ![alt text](image-url) to paste in an image
  • - item to make a list
  • 1. item to make an ordered list
  • > quote to quote somebody
  • `code` for single line of code
  • ```js ... ``` for JS code block
  • ```html ... ``` for HTML code block
  • ```scss ... ``` for SCSS code block
  • ```php ... ``` for PHP code block
  • --- for a horizontal rule
  • happy  :)
  • shocked  :|
  • sad  :(