Hello!

I perform several long computations on the client, and I show a small
notification window like this:

// sample code
for( int step = 0; step < 5; step++ ) {
DecoratedPopupPanel dpp = new DecoratedPopupPanel( false, true );
dpp.add( new HTML( "step " + Integer.toString(step) ));
dpp.show();
do_job( step ); // 1-2 seconds
dpp.hide();
}

In FF, all five steps are shown visually; in IE, the first message is
shown until the whole loop is finished.

Is there a way to re-draw the popup panel in IE without breaking the
flow of the program through timers?

Thanks!

--~--~---------~--~----~------------~-------~--~----~
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