2022-02-03 00:33:05 +01:00
|
|
|
<template>
|
|
|
|
|
<div class="">
|
|
|
|
|
<CMyGroups
|
|
|
|
|
v-model="filter"
|
|
|
|
|
:finder="true"
|
|
|
|
|
>
|
|
|
|
|
<CGridTableRec
|
|
|
|
|
prop_mytable="mygroups"
|
|
|
|
|
prop_mytitle=""
|
|
|
|
|
:prop_mycolumns="colmyUserGroup"
|
|
|
|
|
prop_colkey="_id"
|
|
|
|
|
col_title="groupname"
|
2022-02-05 23:28:01 +01:00
|
|
|
:vertical="costanti.VISUTABLE_LISTA"
|
2022-02-08 23:06:22 +01:00
|
|
|
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"
|
2022-02-19 22:02:54 +01:00
|
|
|
: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"
|
2022-02-19 22:02:54 +01:00
|
|
|
:defaultnewrec="getdefaultnewrec"
|
2022-02-03 00:33:05 +01:00
|
|
|
:extraparams="extraparams()">
|
|
|
|
|
|
|
|
|
|
</CGridTableRec>
|
|
|
|
|
</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>
|
|
|
|
|
|