https://imgur.com/a/S0g1nuV
hello, when I add datatable responsive, the operations button in it does not work, dropdown
It was working without responsive attached.
table.DataTable().on( 'draw', function () {
KTMenu.init();
});
Hi,
Please try to add data-priority="1"
attribute for the main title column and data-priority="2"
attribute for actions column to that TH column that you need to keep outside the response wrapper:
<thead>
<tr class="fw-semibold fs-6 text-gray-800">
<th class="min-w-100px" data-priority="1">Name</th>
<th class="min-w-300px">Position</th>
<th class="min-w-300px">Office</th>
<th>Age</th>
<th>Start date</th>
<th data-priority="2">Salary</th>
</tr>
</thead>
Great, thanks
What should I do for this situation?