Files
salvato.newfreeplanet/src/components/CFinder/CFinder.vue

36 lines
1002 B
Vue
Raw Normal View History

2021-12-11 00:25:35 +01:00
<template>
<div class="bi-border-all">
<div class="q-ma-xs q-gutter-xs q-pa-xs bg-green">
2021-12-11 00:25:35 +01:00
<CGridTableRec
v-if="searchList.length > 0"
2021-12-11 00:25:35 +01:00
prop_mytable="myskills"
prop_mytitle=""
:prop_mycolumns="colmySkills"
prop_colkey="idSkill"
col_title="subTitle"
:vertical="true"
:nodataLabel="idSector > 0 ? 'Nessuna Competenza trovata': 'Selezionare un Settore'"
2021-12-11 00:25:35 +01:00
:prop_search="true"
:finder="true"
2022-01-23 23:25:19 +01:00
:choose_visutype="true"
2021-12-11 00:25:35 +01:00
:butt_modif_new="false"
noresultLabel="Il filtro selezionato non ha trovato nessun risultato"
:arrfilters="arrfilterand"
:filtercustom="filtercustom"
:prop_searchList="searchList"
keyMain="idSkill"
2021-12-11 00:25:35 +01:00
:defaultnewrec="getdefaultnewrec"
:extraparams="extraparams()">
</CGridTableRec>
</div>
</div>
</template>
<script lang="ts" src="./CFinder.ts">
</script>
<style lang="scss" scoped>
@import './CFinder.scss';
</style>