You analysis sounds like an incorrect dom resolution
in the command links javascript to me...

Werner



Michael Wiedmann wrote:

I tracked my problem down to the following:

[ my posted example was not complete in the way that the commandLink is inside
a
 x:panelTabbedPane; sorry for not providing correct information initially ]

- commandLink is working if I put it directly in a JSP page (e.g. outside of x:panelTabbedPane)

- commandLink is _not_ working if I put it inside a x:panelTabbedPane / x:panelTab (in the same application, using the same configuration, bean, web.xml, faces-config.xml, etc.)

<f:view>
<x:panelTabbedPane bgcolor="#FFFFCC" >
..
<!-- this one does _not_ work! -->
 <x:panelTab label="Label">
   <h:form>
     <h:commandLink id ="Tab2xxx" action="#{TestBean.method}">
       <h:outputText value="2005-02-03"/>
     </h:commandLink>
   </h:form>
 </x:panelTab>

..
</x:panelTabbedPane>

<!-- this one works ! -->
<h:form>
 <h:commandLink id ="Tab2xxx" action="#{TestBean.method}">
   <h:outputText value="2005-02-03"/>
 </h:commandLink>
</h:form>

</f:view>

More hints?

Michael





Reply via email to