fixed keyboard option on barcode scan field for tablet

ctp-working
usama.jameel 2025-01-08 12:51:42 +05:00
parent aeaf74c021
commit ff953006cf
1 changed files with 19 additions and 0 deletions

View File

@ -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'
}
}
})