如何创建动态的html表单。更新其他标签时,通过调用标签ID显示不同的行为

时间:2019-03-22 06:42:20

标签: javascript html ajax xml query-string

我的问题,我只有一个html表单,并且有两个标签更新了此表单。如果要单击link1按钮调用exactSearchRC()方法,那么我想精挑细选,否则,如果单击link2不调用该方法。

    <h:form id="chargeBackForm" prependId="false">

                <p:commandLink oncomplete="exactSearchRC()" action="#{chargebackBean.save()}">

                    </p:commandLink>

        </h:form>

其他标签更新此表单

    <h:form prependId="false">
        <p:remoteCommand id="link1" name="chargeBackHistoryRowClick" update="chargeBackForm,modelList" actionListener="#{chargebackBean.loadChargeBackList()}"
            oncomplete="openComponent('rightChargeBackMenu');" />
    </h:form>

其他标签

    <p:commandLink id="link2"  actionListener="#{chargebackBean.loadChargeBackList(rowIndex,transaction)}" process="@this" oncomplete="openComponent('rightChargeBackMenu')"
update="chargeBackForm,modelList">

0 个答案:

没有答案