Hi all
I searched the forum about changing the "please wait" message and found some code in http://echo.nextapp.com/site/node/4212. But the code is written for echo2 libraries. How can i configure it for Echo3
You can also set a fully custom wait indicator by creating your own JS module. There's an example of how to do this in the interactive test app that is available in the Echo source.
Specifically look at the file CustomWaitIndicator.js in the nextapp.echo.testapp.interactive.resource.js package. The custom indicator is installed by invoking addInitScript() in the constructor of your WebContainerServlet implementation. InteractiveServlet.java in the nextapp.echo.testapp.interactive package will have an example of this.
Changine plrease wait message
I haven't tried it, but a limited amount of configuration appears to be possible through calling
UserInstance.setClientConfiguration()
You can also set a fully
You can also set a fully custom wait indicator by creating your own JS module. There's an example of how to do this in the interactive test app that is available in the Echo source.
Specifically look at the file
CustomWaitIndicator.jsin thenextapp.echo.testapp.interactive.resource.jspackage. The custom indicator is installed by invoking addInitScript() in the constructor of your WebContainerServlet implementation. InteractiveServlet.java in the nextapp.echo.testapp.interactive package will have an example of this.From the latest SVN, see:
CustomWaitIndicator.js:
https://svn.nextapp.com/svn/echo3/trunk/src/server-java/testapp-interactive/lib/nextapp/echo/testapp/interactive/resource/js/CustomWaitIndicator.js
InteractiveServlet.java:
https://svn.nextapp.com/svn/echo3/trunk/src/server-java/testapp-interactive/lib/nextapp/echo/testapp/interactive/InteractiveServlet.java
Using an animated gif instead of text as wait message
In Echo2 we were able to display an animated gif as our wait message. (Like the OSX wait indicator)
I was wondering has anyone done this in Echo3?