Is there a way to make a table scroll X in Metronic 8 Vue Theme .
Hi,
If you are using our KTDatatable component, then by default we do not support a scroll behavior in our table. But you can make a table scrollable using CSS.
Firstly, you can add the attributes below to display all your elements in a table and hide items per page dropdown.
:items-per-page="tableData.length"
:items-per-page-dropdown-enabled="false"
.dataTables_wrapper .table-responsive {
position: relative;
overflow: auto;
max-height: 500px;
width: 100%;
}