- Impostato i Font giusti e la corretta disposizione del testo e dei suoi margini.

- L'immagine del libro, se è piccolo, viene adattato alla dimensione fissa (vedere se va bene).
This commit is contained in:
Surya Paolo
2024-11-24 14:40:29 +01:00
parent 6a6c15b62c
commit e10ff192bf
18 changed files with 392 additions and 123 deletions

View File

@@ -1002,11 +1002,11 @@ export const colmyUserGroup = [
AddCol({
name: 'title', label_trans: 'reg.name',
field_toduplicate_nospace: 'groupname',
required: true, noshowlabel: true, maxlength: 40
required: true, noshowlabel: true, maxlength: 50
}),
AddCol({
name: 'groupname', label_trans: 'reg.groupname', required: false,
maxlength: 30,
maxlength: 50,
allowchar: costanti.ALLOWCHAR_CODE,
showLinkResult: '{site}/grp/{value}',
showWhen: costanti.showWhen.InPage + costanti.showWhen.NewRec
@@ -3516,7 +3516,7 @@ export const colTableCircuitComplete = [
// AddCol({ name: 'groupnameId', label_trans: 'circuit.groupnameId', fieldtype: costanti.FieldType.select, jointable: 'mygroups' }), // da togliere poi
AddCol({
name: 'name', label_trans: 'circuit.name',
maxlength: 40,
maxlength: 50,
showWhen: costanti.showWhen.NewRec + costanti.showWhen.InPage
}),
AddCol({
@@ -3633,12 +3633,12 @@ export const colTableCircuit = [
AddCol({
name: 'name', label_trans: 'circuit.name',
required: true,
maxlength: 40,
maxlength: 50,
showWhen: costanti.showWhen.NewRec + costanti.showWhen.InPage + costanti.showWhen.InView
}),
AddCol({
name: 'path', label_trans: 'circuit.path', required: true,
maxlength: 40,
maxlength: 50,
showWhen: costanti.showWhen.NewRec + costanti.showWhen.InPage + costanti.showWhen.InView,
allowchar: costanti.ALLOWCHAR_CODE,
}),