In reply to: Jarosław Dziekan
The user will fill it by using Barcode scanner, not keyboard. So it can not be the readonly.
Usecase:
1. Form is opened
2. JS sets the focus on the attributes, that needs to be filled with scanner
3. User useses scanner to fill attributes with numbers
There is no need to open keyboard that takes half of the screen if the user will never use this keyboard on this form.
Hi,
you can try adding a html type field and create an input type field in it. Then add an action (e.g. onfocusout), and using a javascript function you will enter the value into the webcon field (it can be technical)
e.g. < input type="text" inputmode="none" onfocusout="SetValue('#{FLD:xxx}#', this.value);"/>
xxx - id of your webcon field in which the data will be stored
regards,
Jacek