You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OS: Windows 10
Version: Vaadin 8.1.7
Spring Boot: 1.5.9
So, i used your plugin but it does not affect anything in my code. Is it because I am using my View as a Spring Component? The only addon i am using additionally is the App-Layout-Addon .
My code, althought that doesnt help a lot i guess:
` @PostConstruct
public void init() {
InputMask.addTo(telField,"9999/99999999");
InputMask mailInputMask = new InputMask(Alias.EMAIL);
mailInputMask.extend(mailField);
InputMask nameInputMask = new InputMask("************************");
nameInputMask.setNumericInput(false);
nameInputMask.extend(nameField);
InputMask nameInputMask2 = new InputMask("************************");
nameInputMask2.setNumericInput(false);
nameInputMask2.extend(surnameField);
(...)
mainPage.addComponent(name);
mainPage.addComponent(telField);
mainPage.addComponent(mailField);
mainPage.addComponent(domainComboBox);
mainPage.addComponent(categoryComboBox);
mainPage.addComponent(smsActivated);
}
`
The text was updated successfully, but these errors were encountered:
OS: Windows 10
Version: Vaadin 8.1.7
Spring Boot: 1.5.9
So, i used your plugin but it does not affect anything in my code. Is it because I am using my View as a Spring Component? The only addon i am using additionally is the App-Layout-Addon .
My code, althought that doesnt help a lot i guess:
`
@PostConstruct
public void init() {
InputMask.addTo(telField,"9999/99999999");
}
`
The text was updated successfully, but these errors were encountered: