Files
myprojplanet_vite/src/views/user/mygroups/mygroups.vue

56 lines
1.3 KiB
Vue
Raw Normal View History

2022-02-03 00:33:05 +01:00
<template>
<div class="">
<CMyGroups
v-model="filter"
:finder="true"
>
<CFinder
:table="toolsext.TABMYGROUPS"
:showFilterPersonal="false"
/>
<!--
2022-02-03 00:33:05 +01:00
<CGridTableRec
prop_mytable="mygroups"
prop_mytitle=""
:prop_mycolumns="colmyUserGroup"
prop_colkey="_id"
col_title="groupname"
:vertical="costanti.VISUTABLE_SCHEDA_GROUP"
nodataLabel=" Nessun Gruppo"
2022-02-03 00:33:05 +01:00
:prop_search="true"
hint="nome del gruppo da trovare"
:finder="true"
:choose_visutype="true"
:finder_noNull="false"
:options="shared_consts.OPTIONS_SEARCH_USER_ALL_WORDS"
2022-02-03 00:33:05 +01:00
:butt_modif_new="true"
noresultLabel="nome del gruppo non trovato"
:arrfilters="arrfilterand"
:filtercustom="filtercustom"
:prop_searchList="searchList"
:showType="costanti.SHOW_GROUPINFO"
keyMain=""
:showCol="false"
:defaultnewrec="getdefaultnewrec"
2022-02-03 00:33:05 +01:00
:extraparams="extraparams()">
</CGridTableRec>
-->
2022-02-03 00:33:05 +01:00
</CMyGroups>
<div v-if="filter === costanti.CREATE_GROUP">
Nuovo Gruppo:
</div>
</div>
</template>
<script lang="ts" src="./mygroups.ts">
</script>
<style lang="scss" scoped>
@import './mygroups.scss';
</style>