Dear users,
Is there a way to change an input with small letters to capitals? Let's say
that a name is written: "samuel Oinga". Is there a way to change this into
"Samuel Oinga" so that this can be used as input label again?
Thanks!
Eddy
Dear users,
Is there a way to change an input with small letters to capitals? Let's say
that a name is written: "samuel Oinga". Is there a way to change this into
"Samuel Oinga" so that this can be used as input label again?
Thanks!
Eddy
Eddy,
There is no upper/lower functionality that I know of. If this is
functionality that you'd like, please file it at
https://github.com/opendatakit/javarosa/issues.
Alternatively, you can use a regular expression as a constraint to
ensure the entered data starts with a capital letter.
regex(.'[A-Z].*')
Yaw