Portlet.xml window state is the list of supported custom window states defined and implemented by the Portal, not the actual state of the window state. My first thought would be to try programmatically setting the window state in your portlet's init method. But looking at the PortletConfig class you won't have access to the ActionResponse or RenderResponse in order to call setWindowState(WindowState s).
My second thought was to define it in the portlet <fragment> tag in your PSML (assuming you're using Jetspeed here, and this would tie you to the Jetspeed implementation of default window state)...but from looking at http://portals.apache.org/jetspeed-2/guides/guide-psml.html#Layout_Fragmentsit looks like the "state" property of the <fragment> tag is not the same thing as portlet window state. So, I'm at a loss here myself. Andy On Wed, Mar 19, 2008 at 10:47 AM, Dan Olsen <[EMAIL PROTECTED]> wrote: > I have looked at the spec but I'm still unsure on how to get a portlet to > minimize by default. I see there is the window state but when I add that to > my portlet.xml it does not default to minimized. Any other suggestions? > > - Dan > > >>> "Andrew Strickland" <[EMAIL PROTECTED]> 3/18/2008 6:44 PM >>> > The JSR-168 spec is the authoritative source for all things portlet 1.0, > so > look there first. > > You can find that here: > http://jcp.org/aboutJava/communityprocess/final/jsr168/index.html > > On Tue, Mar 18, 2008 at 4:19 PM, Dan Olsen <[EMAIL PROTECTED]> wrote: > > > I am looking for a place where I can see a list of all the options I can > > put in my portlet.xml file. One thing I am trying to do is set the > default > > windows state to maximized or minimized. I also want to be able to not > allow > > a user to maximize or minimize a portlet. > > > > - Dan > > >
