the behaviour of the maximizing strategy is that once a portlet is maximized, it will ommit the render process for all other portlets. It assumes that at the end of the render process all you want to display is the one maximized portlet, so it saves the portlet container the effort to render portlets that wont be displayed anyway. The only exception to that rule are portlets in the 'navigation' region. They are being let through. Take a look at the Strategy implementation class (org.jboss.portal.theme.impl.strategy.MaximizingStrategyImpl in the theme module).
If you want your portlets in the header region (and others) to still show up if there is a maximized portlet on the page, then you'll either need to change the strategy, or write your own, and point to it via the portal property: | <property> | <name>layout.strategyId</name> | <value>your strategy here</value> | </property> | Please consult the theme documentation for details on how to write and configure your own strategy. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915668#3915668 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915668 ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
