|
How uppercase the fields in entry unit after changed focus? It's possible writing directly in uppercase? |
|
Hi Luisa, if you want to change the case of an input Field you can create or modify the Field Template of the unit. In this case you can prepare a Javascript function which takes in input the value of the current field and returns the same value in uppercase. This function can be called with the onkeyup event. For example:
You can set the onkeyup event and the this.value=this.value.toUpperCase(); function:
|
