Pannello Utente
Aggiornamento Yarn
This commit is contained in:
@@ -196,7 +196,8 @@ export default defineComponent({
|
||||
fieldtype: 0,
|
||||
showWhen: costanti.showWhen.NewRec + costanti.showWhen.InEdit + costanti.showWhen.InView,
|
||||
visible: true,
|
||||
maxlength: props.mycol ? props.mycol.maxlength : 0
|
||||
maxlength: props.mycol ? props.mycol.maxlength : 0,
|
||||
minlength: props.mycol ? props.mycol.minlength : undefined
|
||||
})
|
||||
|
||||
const { setValDb, getValDb } = MixinBase()
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
color="white" text-color="blue"
|
||||
:icon="col.icon ? col.icon : `fas fa-globe`"
|
||||
:href="tools.getlinkstd(myvalue)"
|
||||
:label="myvalue"
|
||||
:label="tools.firstchars(myvalue, 40)"
|
||||
target="_blank"
|
||||
>
|
||||
</q-btn>
|
||||
@@ -613,6 +613,7 @@
|
||||
counter
|
||||
:type="col.fieldtype === costanti.FieldType.crypted ? 'password' : 'text'"
|
||||
:maxlength="col.maxlength ? col.maxlength : undefined"
|
||||
:minlength="col.minlength ? col.minlength : undefined"
|
||||
v-model="scope.value"
|
||||
:autogrow="col.fieldtype !== costanti.FieldType.crypted"
|
||||
@keyup.enter.stop
|
||||
@@ -841,6 +842,7 @@
|
||||
<q-input
|
||||
v-model="scope.value"
|
||||
:maxlength="col.maxlength ? col.maxlength : undefined"
|
||||
:minlength="col.minlength ? col.minlength : undefined"
|
||||
type="password"
|
||||
@keyup.enter="scope.set"
|
||||
autofocus>
|
||||
|
||||
Reference in New Issue
Block a user