Sorting fixed

- added tables Skills, Sectors,
This commit is contained in:
Paolo Arena
2021-10-05 00:19:17 +02:00
parent 1a9a81a1ba
commit 9121569809
22 changed files with 1323 additions and 1064 deletions

View File

@@ -15,7 +15,7 @@
:rows="serverData"
:columns="mycolumns"
:filter="myfilter"
v-model:pagination="mypagination"
v-model:pagination="pagination"
:row-key="colkey"
:loading="loading"
@request="onRequest"
@@ -30,20 +30,19 @@
<template v-slot:header="props">
<q-tr :props="props">
<q-th>
</q-th>
<q-th
v-for="col in props.cols" :key="col.name">
<div
v-if="colVisib.includes(col.field + col.subfield)"
:props="props"
class="text-italic text-weight-bold"
>
v-for="col in props.cols" :key="col.name"
:props="props"
class="text-italic text-weight-bold"
>
<span v-if="col && colVisib.includes(col.field + col.subfield)">
{{ col.label }}
</div>
</span>
</q-th>
</q-tr>
</template>