Hi Daniel,
the screen is implemented in the following way:
XML Layout:
Code:
<t:beanprocessing id="g_1" beanbinding="#{d.WorkplaceOutestRiscUI}" >
<t:callserverontrigger id="g_7" actionListener="#{d.WorkplaceOutestRiscUI.onFirstShown}" duration="2000" trigger="#{d.WorkplaceOutestRiscUI.firstShownTrigger}" />
</t:beanprocessing>
<t:rowpagebeaninclude .../>
So the CALLSERVERONTRIGGER component gets triggered directly at startup, then waits 200ms, then calls the function "onFirstShown".
The ROWPAGEBEANINCLUDE is first showing a "welcome-page" (some text "...starting..." and then, after onFirstShown is called comes up with the real application screen.
In your case you can also call "onFirstShown" immediately (duration="1"), then the first screen is show, directly calls the application to start up - so that the startup is happening behing the welcome-screen.
Kind regards! Björn