- creato editor di Pagine (iniziato)

- fix: mancano i "t," su alcuni componenti...
This commit is contained in:
Surya Paolo
2025-09-02 16:22:13 +02:00
parent 4f4297ca21
commit 574f389200
324 changed files with 5838 additions and 759 deletions

View File

@@ -1630,7 +1630,7 @@ export default defineComponent({
function showandsave(row: any, col: any, newval: any, valinitial: any) {
console.log('showandsave CGridTable', row, col, newval)
// console.log('showandsave CGridTable', row, col, newval)
rowsel.value = row
colsel.value = col
idsel = row._id

View File

@@ -120,7 +120,7 @@
color="positive"
rounded
:icon="!showfilteradv ? 'fas fa-arrow-down' : 'fas fa-arrow-up'"
:label="!showfilteradv ? $t('grid.advanced_filters') : $t('grid.hide_advanced_filters')"
:label="!showfilteradv ? t('grid.advanced_filters') : t('grid.hide_advanced_filters')"
@click="showfilteradv = !showfilteradv"
></q-btn>
</div>
@@ -295,7 +295,7 @@
:hint="!hintinbtnsearch ? hint : ''"
:error-message="noresultLabel"
:error="getNumRecFromQuery() === 0 && !startsearch && myfilter !== ''"
:label="hintinbtnsearch ? hint : $t('grid.search')"
:label="hintinbtnsearch ? hint : t('grid.search')"
@keyup.enter="doSearch"
@clear="
myfilter = '';
@@ -330,11 +330,11 @@
toggle-color="secondary"
:options="[
{
label: $t('grid.showmap'),
label: t('grid.showmap'),
value: true,
icon: 'fas fa-map-marked-alt',
},
{ label: $t('grid.showlist'), value: false, icon: 'fas fa-list' },
{ label: t('grid.showlist'), value: false, icon: 'fas fa-list' },
]"
/>
</div>
@@ -802,7 +802,7 @@
size="sm"
color="positive"
:icon="!showfilteradv ? 'fas fa-arrow-down' : 'fas fa-arrow-up'"
:label="!showfilteradv ? $t('grid.advanced_filters') : $t('grid.hide_advanced_filters')"
:label="!showfilteradv ? t('grid.advanced_filters') : t('grid.hide_advanced_filters')"
@click="showfilteradv = !showfilteradv"
></q-btn>
</div>
@@ -1255,7 +1255,7 @@
debounce="500"
:error-message="noresultLabel"
:error="getNumRecFromQuery() === 0 && !startsearch"
:label="hint ? hint : $t('grid.search')"
:label="hint ? hint : t('grid.search')"
v-on:keyup.enter="doSearch"
>
<template v-slot:prepend>
@@ -1446,7 +1446,7 @@
dense
rounded
:icon="!showfilteradv ? 'fas fa-arrow-down' : 'fas fa-arrow-up'"
:label="showfilteradv ? $t('grid.hide_campi_avanzati') : $t('grid.show_campi_avanzati')"
:label="showfilteradv ? t('grid.hide_campi_avanzati') : t('grid.show_campi_avanzati')"
:class="{ 'q-btn--active': showfilteradv }"
:aria-expanded="showfilteradv.toString()"
@click="showfilteradv = !showfilteradv"
@@ -1529,7 +1529,7 @@
size="md"
dense
:icon="!showfilteradv ? 'fas fa-arrow-down' : 'fas fa-arrow-up'"
:label="!showfilteradv ? $t('grid.show_campi_avanzati') : $t('grid.hide_campi_avanzati')"
:label="!showfilteradv ? t('grid.show_campi_avanzati') : t('grid.hide_campi_avanzati')"
@click="showfilteradv = !showfilteradv"
></q-btn>
</div>