Hi ! I have a one problem with GWT TextBox nad HTML Widget messages ( Warning ). When i click on the first, second or third TextBox and press Caps Lock, Tab, CTRL, ESC... Widget show warning. :( TextBox reading this button :(
Page: http://test.playstation-android.sk/ First TextBox SRC: Prezyvka.addKeyUpHandler(new KeyUpHandler(){ @Override public void onKeyUp(KeyUpEvent event) { String a=Prezyvka.getText().trim(); int b=a.length(); if(b>0){ PrezyvkaNapis1.setVisible(false); PrezyvkaNapis2.setVisible(false); PrezyvkaNapis3.setVisible(true); // Prezývka je povinná ! ---> Nickname compulsory }else{ PrezyvkaNapis1.setVisible(false); PrezyvkaNapis3.setVisible(false); PrezyvkaNapis2.setVisible(true); // Prezývka zadaná správne ! ---> Nickname OK } } }); // Handler pre [ Prezývka ] po kliknutí zobrazí ,,návod" Prezyvka.addClickHandler(new ClickHandler(){ public void onClick (ClickEvent event){ String a=Prezyvka.getText(); int b=a.length(); if (b==0){ PrezyvkaNapis3.setVisible(false); PrezyvkaNapis2.setVisible(false); PrezyvkaNapis1.setVisible(true); // Zadajte vašu prezývku ---> Enter a nickname } } }); -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
