-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
I'm getting a strange behaviour. If I extend a textField to have upper Casing, the setMaxLenght condition is not applied anymore and I can enter unlimited amount of characters.
`TextField textField = new TextField("caption of the text field limited with 5 chars");
TextField upperText = new TextField("Upper text limited with 5 chars");
textField.setMaxLength(5);
upperText.setMaxLength(5);
InputMask upperMask = new InputMask("") ;
upperMask.setCasing(Casing.UPPER);
upperMask.extend(upperText);
setContent(new VerticalLayout(textField,upperText));`
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels