04-27-04 04:34 PM
How does this effect portlet caching, when does the container call
getLastModified(), in the even phase or render phase?
thanks
"Marco Beelen" <marco.beelen@axxius.nl> wrote in message
news:c6l0vb$5es6$1@news.boulder.ibm.com...[vbcol=seagreen]
> Within the doView()-method for your portlet you can do:
> request.getWindow().getWindowState() to determine the WindowState.
>
>
> Sample code to determine how to use this:
>
> PortletWindow.State portletState = request.getWindow().getWindowState();
> if ( PortletWindow.State.MAXIMIZED.equals( portletState ) ) {
> include( "maximized.jsp", request, response )
> }
> else {
> include( "normal.jsp", request, response );
> }
>
>
>
>
> Zheng Yi wrote:
[ Post a follow-up to this message ]
|