Files
newfreeplanet_OLD/src/components/CFinder/CFinder.vue

35 lines
895 B
Vue
Raw Normal View History

2021-12-11 00:25:35 +01:00
<template>
<div>
<div class="q-ma-sm q-gutter-sm q-pa-xs">
<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="Nessuna Competenza trovata"
2021-12-11 00:25:35 +01:00
:prop_search="true"
:finder="true"
: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>