|
|
|
I have also tried using a resource bundle with an entry of javax.portlet.title but this doesn't work either. It is my understanding that if you have the section:
<portlet-info> <title>My PortletWork portlet2</title> <short-title>PW2</short-title> <keywords>webwork,portletwork</keywords> </portlet-info> in the portlet.xml that should control the title? Thanks In case you need any more details of the app or my setup, please see the attached eclipse webapp project.
Many thanks for your help with this. Kind regards Jason Thanks. I will investigate this. In the mean time, you can use a 'title' property of the result that dispatches to your view, like this:
<action name="bar" class="myPackage.barAction"> <result name="success"> <param name="location">/view/myJsp.jsp</param> <param name="title">Portlet Page Title</param> </result> </action> The work around works great and is arguably possibly my preferred way to do it.
Thanks for looking into this so quickly. Kind regards Jason | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Could you please paste in your portlet.xml file?
Thanks