Hello!
Could u tell me how can I change portlet title (on the window) dynamically?
Is it possible?
regards
MB.
Do something like this:
protected void doView(RenderRequest request,
RenderResponse response) throws PortletException, IOException{
. . .
response.setTitle("The New Title");
. . .
}