FILTRO CITTA Sopra ogni pagina !

This commit is contained in:
Surya Paolo
2022-12-01 16:55:22 +01:00
parent 9010c0ff37
commit bf1e9fc982
26 changed files with 900 additions and 74 deletions

View File

@@ -111,6 +111,7 @@ export const costanti = {
hint: '',
disable: true,
small: false,
table: '',
},
{
visible: true,
@@ -135,6 +136,7 @@ export const costanti = {
hint: '',
disable: true,
small: false,
table: '',
},
{
visible: false,
@@ -147,6 +149,7 @@ export const costanti = {
hint: '',
disable: true,
small: true,
table: '',
},
{
visible: true,
@@ -158,6 +161,7 @@ export const costanti = {
disable: false,
small: false,
link: true,
table: '',
},
{
visible: true,
@@ -169,6 +173,7 @@ export const costanti = {
disable: false,
small: true,
link: true,
table: '',
},
{
visible: false,
@@ -179,6 +184,7 @@ export const costanti = {
hint: '',
disable: true,
small: true,
table: '',
},
{
visible: false,

View File

@@ -2055,6 +2055,17 @@ export const tools = {
return ris
},
strToObj(mystr: string): any {
if (mystr)
return JSON.parse(mystr)
else
return null
},
objToStr(myobj: any): string {
return JSON.stringify(myobj)
},
notifyarraychanged(array: any) {
if (array.length > 0) {
array.splice(array.length - 1, 1, array[array.length - 1])