<rich:popup面板按钮在 JSF 项目中不起作用



在我的JSF+Spring项目中,我试图添加表单并从弹出窗口获取值。但是当按钮被点击时,没有调试点到达相关控制器&而且功能不工作。这里显示了我的.xhtml文件

请参考并建议我解决这个问题

谢谢所有…

    <h:outputLink value="#" id="ll">
        <rich:componentControl event="click" operation="show" target="lp">
            <a4j:param name="event" value="event" noEscape="true" />
            <rich:hashParam>
                <a4j:param noEscape="true" name="top" value="200" />
                <a4j:param noEscape="true" name="left" value="200" />
            </rich:hashParam>
        </rich:componentControl>
        Tag SAM
    </h:outputLink>
        <rich:popupPanel id="lp" modal="false" height="300" width="500" autosized="false" resizeable="true">
        <f:facet name="header">
            <h:outputText value="SAM Selector" />
        </f:facet>
                <a4j:commandButton value="Load SAM" action="#{pOSController.loadSamPosTagging()}" render=" #{rich:clientId('dataTableSamView')}" />
                <a4j:commandButton value="Save Tagging" action="#{pOSController.saveSamPosTagging()}" render=" #{rich:clientId('dataTableSamView')}" />
                <rich:dataTable style="width:80%;" rows="10" value="#{pOSController.selectedSamBeans}" var="samView" id="dataTableSamView">
                    <rich:column style="height:25px;">
                        <f:facet name="header" />
                        <h:selectBooleanCheckbox value="#{samView.selected}">
                            <f:selectItem itemValue="true" itemLabel="" />
                            <a4j:ajax immediate="true" execute="@this" />
                        </h:selectBooleanCheckbox>
                    </rich:column>
                    <rich:column>
                        <f:facet name="header">SAM UID</f:facet>
                        <h:outputText value="#{samView.samUid}" />
                    </rich:column>
                    <rich:column>
                        <f:facet name="header">SAM DID</f:facet>
                        <h:outputText value="#{samView.samDid}" />
                    </rich:column>
                    <rich:column>
                        <f:facet name="header">Expire Date</f:facet>
                        <h:outputText value="#{samView.expireDate}" />
                    </rich:column>
                    <rich:column>
                        <f:facet name="header">Status</f:facet>
                        <h:outputText value="#{samView.status}" />
                    </rich:column>
                </rich:dataTable>
            <h:outputLink onclick="#{rich:component('lp')}.hide(event); return false;" value="#">SAM Tag</h:outputLink>
        </rich:popupPanel>
        <!--    ###################################################### Custom POPUP_PANEL ################################################################   -->                     
        </rich:column>              
    </rich:dataTable>   

请参考这个链接,我在github中添加了代码GITHUB LINK -点击这里

@VasilLukach谢谢。

问题是与我的父页面的数据表。

相关内容

  • 没有找到相关文章

最新更新