In our application we reach a point where we want to have a static HTML page displayed with not ability by the user to interact any further. This is used for an unrecoverable error condition. What is the best way to do this? Is there something simpler than HTMLPane where the page is just displayed by the browser without further involving SmartGWT controls?
Announcement
Collapse
No announcement yet.
X
-
The best approach probably depends on the user-experience you're after. If you really want to just show an error page and throw away the application, the easiest solution is probably to just redirect the browser (window.location.replace, available via the GWT Window.Location object).
If you want the application to stay loaded but in the background, an HTMLPane, possibly embedded in a modal window might be a good solution
Regards
Isomorphic Software
Comment