2022-01-05 19:11:47 +01:00
|
|
|
<template>
|
2022-01-14 23:54:12 +01:00
|
|
|
<div class="">
|
2023-03-22 22:45:00 +01:00
|
|
|
<CMyFriends v-if="searchList.length > 0" v-model="filter" :finder="true">
|
2022-01-12 00:38:31 +01:00
|
|
|
<CGridTableRec
|
|
|
|
|
prop_mytable="users"
|
|
|
|
|
prop_mytitle=""
|
|
|
|
|
:prop_mycolumns="colmyUserPeople"
|
|
|
|
|
prop_colkey="_id"
|
|
|
|
|
col_title="username"
|
2022-02-19 22:02:54 +01:00
|
|
|
:vertical="costanti.VISUTABLE_LISTA"
|
2023-10-01 01:24:55 +02:00
|
|
|
nodataLabel=" "
|
2022-01-12 00:38:31 +01:00
|
|
|
:prop_search="true"
|
2023-03-23 00:09:59 +01:00
|
|
|
:prop_showfilter="true"
|
2025-01-11 12:08:03 +01:00
|
|
|
hint=""
|
2022-01-12 00:38:31 +01:00
|
|
|
:finder="true"
|
2023-10-01 01:24:55 +02:00
|
|
|
:choose_visutype="false"
|
2023-03-23 00:09:59 +01:00
|
|
|
:finder_noNull="false"
|
2025-01-11 12:08:03 +01:00
|
|
|
:finder_noNullFilters="false"
|
2022-02-19 22:02:54 +01:00
|
|
|
:options="shared_consts.OPTIONS_SEARCH_USER_ALL_WORDS"
|
2022-01-12 00:38:31 +01:00
|
|
|
:butt_modif_new="false"
|
2023-10-01 01:24:55 +02:00
|
|
|
noresultLabel="Username, Nome o Cognome non trovato"
|
2022-01-12 00:38:31 +01:00
|
|
|
:arrfilters="arrfilterand"
|
|
|
|
|
:filtercustom="filtercustom"
|
2023-03-21 18:12:06 +01:00
|
|
|
:prop_searchList="searchList"
|
2022-01-12 00:38:31 +01:00
|
|
|
:showType="costanti.SHOW_USERINFO"
|
2025-01-11 12:08:03 +01:00
|
|
|
:prop_pagination="{ sortBy: 'username', descending: false, page: 1, rowsNumber: 0, rowsPerPage: 10 }"
|
2022-01-14 23:54:12 +01:00
|
|
|
:showCol="false"
|
2023-03-22 22:45:00 +01:00
|
|
|
:extraparams="extraparams()"
|
|
|
|
|
>
|
2022-01-12 00:38:31 +01:00
|
|
|
</CGridTableRec>
|
2022-01-14 23:54:12 +01:00
|
|
|
</CMyFriends>
|
2022-01-05 19:11:47 +01:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" src="./myfriends.ts">
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
@import './myfriends.scss';
|
|
|
|
|
</style>
|
|
|
|
|
|