Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plugin does not do anything #2

Open
l33the opened this issue Dec 7, 2017 · 2 comments
Open

Plugin does not do anything #2

l33the opened this issue Dec 7, 2017 · 2 comments

Comments

@l33the
Copy link

l33the commented Dec 7, 2017

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);

}
`

@henriquemeira
Copy link

Same here.

Version: Vaadin 8
Spring Boot: 2

@jonasrotilli
Copy link

I also could not use it in SpringBoot with vaadin 8.7.1.
I wonder why?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants