jsf - p:commandLink inside p:accordionPanel works in IE, but not in FF/Chrome -
i have following view:
<ui:composition template="/templates/cmslayout.xhtml"> <ui:define name="rightpane"> <div class="rightpane_header"> <p:tabmenu activeindex="0"> <p:menuitem value="home" url="/userhome.faces" /> ... </p:tabmenu> </div > <div class="rightpanedata"> <h:form> <p:growl id="growl"/> <p:accordionpanel activeindex="0" dynamic="false" cache="false"> <p:tab title="my document"> <f:event type="prerendercomponent" listener="#{documentcontroller.getmydocumentsforhome()}" /> <p:datatable id="homemydoctable" var="mydocument" value="#{documentcontroller.mydocuments}" rowkey="#{mydocument.docid}" selection="#{documentcontroller.selecteddocument}" selectionmode="single"> <p:ajax event="rowselect" listener="#{documentcontroller.viewdocumentdetailpage}" /> <p:column headertext="document number" id="homemydocnumber" styleclass="fixedcolumnwidth"> <h:outputtext value="#{mydocument.docid}" /> </p:column> ... </p:datatable> <p:commandlink value="more.." rendered="#{documentcontroller.mydocmorestatus}" action="#{documentcontroller.viewmydocumentpage}" /> </p:tab> </p:accordionpanel> </h:form> </div> </ui:define> </ui:composition>
the <p:commandlink>
value of "more.." works fine in ie, not in ff/chrome. how caused , how can solve it?
Comments
Post a Comment