Files
myprojplanet_vite/src/components/CSkill/CSkill.vue

42 lines
1.2 KiB
Vue
Raw Normal View History

2022-12-09 03:09:16 +01:00
ù<template>
2021-10-08 00:38:22 +02:00
<div>
<div class="q-my-xs">
2021-10-08 00:38:22 +02:00
<CGridTableRec
v-if="filtercustom.length > 0 && col && col.length > 0"
:prop_mytable="table"
:prop_mytitle="title"
:prop_mycolumns="col"
:prop_colkey="prop_colkey"
2023-04-07 21:48:33 +02:00
:options="tools.optionsTable(table)"
:col_title="col_title"
:col_footer="col_footer"
:vertical="costanti.VISUTABLE_LISTA"
2022-01-26 01:31:07 +01:00
:choose_visutype="!visuinpage"
:butt_modif_new="!visuinpage"
nodataLabel=" "
:prop_search="false"
2022-01-26 01:31:07 +01:00
:visuinpage="visuinpage"
noresultLabel="La ricerca non ha ottenuto nessun risultato"
:defaultnewrec="tools.getdefaultnewrec(table, {groupname})"
:filtercustom="filtercustom"
2022-01-03 21:53:41 +01:00
v-bind="$attrs"
:extraparams="tools.extraparams(table)"
:noaut="noaut"
:hidetitleIfEmpty="true"
:labelBtnAddExtra="`Aggiungi ` + title"
:prop_pagination="tools.getPagination()"
:groupname="groupname"
:margin_right="30">
2021-10-08 00:38:22 +02:00
</CGridTableRec>
</div>
</div>
</template>
<script lang="ts" src="./CSkill.ts">
</script>
<style lang="scss" scoped>
@import './CSkill.scss';
</style>