fixed keyboard option on barcode scan field for tablet
parent
aeaf74c021
commit
ff953006cf
|
@ -53,6 +53,9 @@ if ( typeof Vue !== 'undefined' ) {
|
|||
},
|
||||
clearTextOnSelect: {
|
||||
default: false
|
||||
},
|
||||
inputMode:{
|
||||
default: 'text'
|
||||
}
|
||||
},
|
||||
data: function() {
|
||||
|
@ -212,6 +215,7 @@ if ( typeof Vue !== 'undefined' ) {
|
|||
v-bind:required="required"
|
||||
v-bind:disabled="disabled"
|
||||
v-bind:readonly="readOnly"
|
||||
v-bind:inputmode="inputMode"
|
||||
v-bind:class="{ 'is-invalid': ( showInputErrorOnZeroId && ( entityId === 0 || entityId == null ) ) }"
|
||||
autocomplete="off">
|
||||
<!-- autocomplete list -->
|
||||
|
@ -3398,6 +3402,9 @@ if ( typeof Vue !== 'undefined' ) {
|
|||
},
|
||||
filter : {
|
||||
default : true
|
||||
},
|
||||
inputMode: {
|
||||
default : 'none'
|
||||
}
|
||||
}
|
||||
})
|
||||
|
@ -3434,6 +3441,9 @@ if ( typeof Vue !== 'undefined' ) {
|
|||
},
|
||||
received : {
|
||||
default : false
|
||||
},
|
||||
inputMode: {
|
||||
default : 'none'
|
||||
}
|
||||
}
|
||||
})
|
||||
|
@ -3467,6 +3477,9 @@ if ( typeof Vue !== 'undefined' ) {
|
|||
codeFieldName : {
|
||||
default : 'code'
|
||||
},
|
||||
inputMode: {
|
||||
default : 'none'
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
|
@ -3503,6 +3516,9 @@ if ( typeof Vue !== 'undefined' ) {
|
|||
},
|
||||
isSegregated : {
|
||||
default : false
|
||||
},
|
||||
inputMode: {
|
||||
default : 'none'
|
||||
}
|
||||
}
|
||||
})
|
||||
|
@ -3535,6 +3551,9 @@ if ( typeof Vue !== 'undefined' ) {
|
|||
},
|
||||
codeFieldName : {
|
||||
default : 'bundleCode'
|
||||
},
|
||||
inputMode: {
|
||||
default : 'none'
|
||||
}
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue