1

commandButtonJSF ページにコンポーネントがあります。

初期ボタン

<p:commandButton id="period"
    value="#{myBean.isMonthly == false ? 'Yearly' : 'Monthly'}"
    action="#{myBean.doSomeOtherStuff()}"
    update="period myDataTable">
</p:commandButton>

dataTable上のボタンをクリックして更新しようとしています。クリックすると、dataTableは必要に応じて更新されますが、commandButtonは奇妙な動作をし、次のような表示になります。

アップデート後のボタン

このような奇妙な状況の原因を理解し、可能であれば解決策を教えてもらえますか?

ノート:

  • JSF の実装とバージョン: Mojarra (javax.faces-2.1.11.jar)
  • 表示技術: Facelets (XHTML)
  • コピー&ペースト&実行可能な例!(SSCCE)以下に記載:

FilterBean.java:

package com.turkcell.mdealer.bean.impl;

import org.springframework.stereotype.Component;

@Component
public class FilterBean {
    private boolean monthly = true;

    public String applyPeriod(String caller) {
        monthly = !monthly;
        return caller;
    }

    public boolean isMonthly() {
        return monthly;
    }

    public void setMonthly(boolean monthly) {
        this.monthly = monthly;
    }
}

サンプル.xhtml:

<f:view xmlns="http://www.w3.org/1999/xhtml"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:c="http://java.sun.com/jsp/jstl/core"
    xmlns:turkcell="http://turkcell.com/jsf/facelets"
    xmlns:p="http://primefaces.org/ui" xmlns:o="http://omnifaces.org/ui"
    xmlns:of="http://omnifaces.org/functions"
    xmlns:pm="http://primefaces.org/mobile" contentType="text/html"
    renderKitId="PRIMEFACES_MOBILE">
    <pm:page title="Bayi Raporlari">
        <pm:view id="FaturasizAktivasyon" swatch="c">
            <p:outputPanel id="FaturasizPanel">
                <h:form id="FaturasizForm">
                    <pm:content>
                        <p:commandButton id="period"
                            value="#{filterBean.monthly == false ? 'Yearly' : 'Monthly'}"
                            action="#{filterBean.applyPeriod('sample')}" update="period">
                        </p:commandButton>
                    </pm:content>
                </h:form>
            </p:outputPanel>
        </pm:view>
    </pm:page>
</f:view>

ライブラリの概要:

ここに画像の説明を入力

4

1 に答える 1

1

変な行動の理由がわからない

ただし、条件付きでレンダリングされた 2 つのボタンを使用して、同じ効果を得ることができます。

<p:panelGroup>
    <p:commandButton value="Monthly"
        action="#{myBean.doSomeOtherStuff()}"
        update="myDataTable @parent" rendered="#{myBean.isMonthly}" />
    <p:commandButton value="Yearly"
        action="#{myBean.doSomeOtherStuff()}"
        update="myDataTable @parent" rendered="#{not myBean.isMonthly}" />
</p:panelGroup>
于 2013-03-28T14:51:20.083 に答える