Aggiunto il filtro per Provincia

This commit is contained in:
paoloar77
2022-01-23 23:25:19 +01:00
parent 6e54fa06c4
commit 030523c8ee
25 changed files with 1097 additions and 405 deletions

View File

@@ -595,6 +595,19 @@ export default defineComponent({
)
}
function getTitleEditor(col: IColGridTable, row: any) {
let title = ''
if (!!col.field_extra1) {
try {
title = tools.getValue(row, col.field_extra1, col.subfield_extra1!)
}catch (e){}
}
return title
}
onBeforeMount(mounted)
crea()
@@ -631,6 +644,7 @@ export default defineComponent({
col,
myImgGall,
noPopupeditByCol,
getTitleEditor,
}
}
})