setUppercase()

Hi !

How can i do TextField uppercase ?

Hi,

Yes you can, but you need a custom theme for it.

Create a new theme for your app (extend Reindeer), add the following CSS there:

.v-textfield-uppercase {
    text-transform: uppercase;
}

Then in your Java code use TextField.setStyleName(“uppercase”) to trigger the style.

Thank you Jouni !