I have a problem when I execute a Vaadin 6 application in the Internet Explorer 11.
When I click in any button, a red icon appear and I have this Exception: java.lang.NumberFormatException
.
Can someone help me to identify the cause of this problem?
I don't know if you are making the right question, but, your input string is 26.670000076293945, it has a dot and you are trying to parseInt this number. Well a number with a dot can't be an integer, that's why you get a NumberFormatException.