Try only using flowpanel...
Just a guess
Tim Martens wrote:
> I'm working on a small GWT web app to run on my IPod Touch (version:
> 2.2.1 (5H11)).  The problem is that rendering of the page hangs when I
> type into a TextBox and update a Label at the same time.  Below is
> some sample code that reproduces the issue:
>
> public class IPodKillTest extends VerticalPanel implements
> KeyUpHandler
> {
>       private Label label = new Label("0");
>       private TextBox box = new TextBox();
>
>       public IPhoneKillTest()
>       {
>               box.addKeyUpHandler(this);
>               this.add(box);
>               this.add(label);
>       }
>
>       public void onKeyUp(KeyUpEvent event)
>       {
>               label.setText(box.getText());
>       }
> }
>
> When I entered text using the IPod's keyboard fast enough, the whole
> page goes white and I have to reload the page.  Am I doing something
> wrong?  Is there anything I can do to work around this issue?  Any
> help is appreciated.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to