Hi all,

I am using

Myfaces trinidad JSF 1.2
Myfaces PortletBridge (1.0)
uPortal 3.2 container

My JSF application (servlet) run but not in portlet mode.
When i see the home page after some refreshs, this action don't work...

<tr:commandLink styleClass="listingLink" actionListener="#{commonController.titleActionListener}" action="page">
   <h:outputText value="#{title}" escape="false" />
</tr:commandLink>

titleActionListener is ok, i see the title in log...

   public String titleActionListener(ActionEvent action) {
       CoreCommandLink link = (CoreCommandLink) action.getComponent();
       HtmlOutputText html = (HtmlOutputText) link.getChildren().get(0);
       title = (String) html.getValue();
       logger.info("Title: " + title);
       return null;
   }

<navigation-case>
  <from-outcome>page</from-outcome>
  <to-view-id>/page.jsp</to-view-id>
 </navigation-case>

But nothing change in portlet...

An idea ?

--
Yves Deschamps
Université de Lille 1
CRI Pôle Web, Environnement Numérique de Travail
Bâtiment M4
Tel : 03 20 43 41 89
Fax : 03 20 43 66 25

Reply via email to