CommandLink在模式对话框JSF中不起作用

时间:2019-10-10 14:36:03

标签: java jsf

我尝试在我的模式对话框中有一个链接,但是它不起作用。永远不会达到与此元素关联的动作。

<s:modalDialog id="p_login_certsremotos" rendered="#{dashboardBean.temVariosCertsRemotos}" dialogId="popupVariosCertsRemotos" dialogVar="popupVariosCertsRemotos" styleClass="viewDialogLogin" 
              dialogTitle="#{lbl.escolhaOrganizacao}" closeButton="false">
    <h:form id="formxpto">
        <t:div style="text-align:left;overflow-y:auto; height:170px;position: relative;" styleClass="link1">
            <t:dataList styleClass="escolhaEmpresa"  id="listaCertsRemotos" title="#{lbl.entidades}" binding="#{dashboardBean.tabelaCertsRemotos}" 
               var="cert"
              value="#{dashboardBean.certs}"
              layout="unorderedList">
              <t:column>
                  <t:commandLink  id="xpto" title="#{cert.subjectCN}" immediate="false" actionListener="#{dashboardBean.escolheCertRemoto}">
                    <t:outputText  value="LEGO"/>
                  </t:commandLink>
              </t:column>
            </t:dataList>
        </t:div>
    </h:form>
</s:modalDialog>

我正在使用jsf 1.1,java 1.6.35,沙箱1.1.7和Tomahawk 1.1.5。关于此链接无效的原因有任何想法吗?

0 个答案:

没有答案