hi @metalsadman , I don’t see any “after” slot in the Table API ? As for the use of body-cell
I’m not sure I would use it to moce the selection column from first to last ?
My current table looks like this: (treat all the ms-table
as q-table
in the tags)
<ms-table
:data="sources"
:columns="columns"
row-key="id"
@row-click="onRowClicked"
:pagination.sync="pagination"
:loading="loading"
@request="onTableRequest"
binary-state-sort
:visible-columns="visibleColumns"
:selected.sync="selectedSources"
selection="multiple"
>
<template v-slot:body-cell-isImmo="props">
<ms-table-bool :props="props" />
</template>
<template v-slot:body-cell-isEnabled="props">
<ms-table-bool circle-style size="sm" :props="props" />
</template>
<q-td slot="body-cell-actions" slot-scope="props" :props="props">
<ms-table-btn icon="fas fa-trash-alt" class="q-mr-md" />
</q-td>
</ms-table>