0

我在选项卡视图中有一个哈希图,第一个选项卡上有两个选项卡,用户可以在第二个选项卡上看到他选择的所有对象,他可以看到他可以选择的所有对象。两者都是相同的 Hashmap。

XHTML:

<p:tabView id="tabViewElement" style="margin-top: 5px;min-height: 50px;max-height: 300px;overflow-x: hidden;" dynamic="true" activeIndex="0">
<p:ajax event="tabChange" listener="#{Bean.onTabChangeElement}" update="tabViewElement:productConfs tabViewElement:cardsElements" />
<p:tab id="idTabElementView" title="Elements Sectionnes">
    <h:inputText rendered="#{Bean.objectselected}" value="Aucun produit selectionné"/>
    <p:dataTable id="productConfs" var="productConf" value="#{Bean.keyAsListForAllElement}" rendered="#{Bean.objectselected}">
        <f:facet name="header">
            <h:outputText value="ELEMENTS" />
        </f:facet>
        <p:column headerText="" rendered="#{Bean.listAllElement[productConf]}">
            <p:selectBooleanCheckbox value="#{Bean.listAllElement[productConf]}">
                <p:ajax listener="#{Bean.checkBoxElement}" update="productConfs" />
            </p:selectBooleanCheckbox>
        </p:column>
        <p:column headerText="Reference" rendered="#{Bean.listAllElement[productConf]}">
            <h:outputText value="#{productConf.reference}" />
        </p:column>
        <p:column headerText="Indice majeur" rendered="#{Bean.listAllElement[productConf]}">
            <h:outputText value="#{productConf.majorIndex}" />
        </p:column>
        <p:column headerText="Indice mineur" rendered="#{Bean.listAllElement[productConf]}">
            <h:outputText value="#{productConf.minorIndex}" />
        </p:column>
        <p:column headerText="Designation" rendered="#{Bean.listAllElement[productConf]}">
            <h:outputText value="#{productConf.productConfModel.reference}" />
        </p:column>
        <p:column headerText="Identifiable" rendered="#{Bean.listAllElement[productConf]}">
            <p:selectBooleanCheckbox disabled="true" value="#{productConf.identifiable}" />
        </p:column>
    </p:dataTable>
</p:tab>
<p:tab id="tabSelectedElement" title="Choisir Elements" style="margin-top: 5px;max-height:400px;overflow-y: scroll;overflow-x: hidden;">
    <p:dataTable id="cardsElements" var="cardElement" value="#{Bean.keyAsListForAllElement}">
        <f:facet name="header">
            <h:outputText value="ELEMENTS" />
        </f:facet>
        <p:column headerText="">
            <p:selectBooleanCheckbox value="#{Bean.listAllElement[cardElement]}">
                <p:ajax listener="#{Bean.checkBoxElement}" update="cardsElements" />
            </p:selectBooleanCheckbox>
        </p:column>
        <p:column headerText="Reference">
            <h:outputText value="#{cardElement.reference}" />
        </p:column>
        <p:column headerText="Indice majeur">
            <h:outputText value="#{cardElement.majorIndex}" />
        </p:column>
        <p:column headerText="Indice mineur">
            <h:outputText value="#{cardElement.minorIndex}" />
        </p:column>
        <p:column headerText="Designation">
            <h:outputText value="#{cardElement.productConfModel.reference}" />
        </p:column>
        <p:column headerText="Identifiable">
            <p:selectBooleanCheckbox disabled="true" value="#{cardElement.identifiable}" />
        </p:column>
    </p:dataTable>
</p:tab>
</p:tabView>

当我检查或没有一个对象时,第二个选项卡效果很好,我可以在第一个选项卡上看到他,但是当我从第一个选项卡中取消选中一个时,我看到他消失了,但是当我切换到第二个选项卡时,他又出现了。

我已经把它放在我的代码上,以检查我的 HashMap 中有多少对象和值 true。

private HashMap<Product, Boolean> listAllElement = new HashMap<Product, Boolean>();

public void onTabChangeElement(TabChangeEvent event) {
    System.out.println("TAB CHANGE");
}

public List<Product> getKeyAsListForAllElement() {
    int i = 0;
    for (Entry<Product, Boolean> e : this.listAllElement.entrySet()) {
        if (e.getValue() == true) {
            i++;
        }
    }
    System.out.println("BOOLEAN TRUE = " + i);
    return new ArrayList<Product>(this.listAllElement.keySet());
}

输出

BOOLEAN TRUE = 1
BOOLEAN TRUE = 1
BOOLEAN TRUE = 1
BOOLEAN TRUE = 1
BOOLEAN TRUE = 2
TAB CHANGE
BOOLEAN TRUE = 2
BOOLEAN TRUE = 2
BOOLEAN TRUE = 2
BOOLEAN TRUE = 2

我使用 Tomcat 7 在 primefaces 3.5 上工作。

谁能帮帮我,问题出在哪里?

4

1 回答 1

1

我已经解决了我的问题。我必须删除这个监听器:

<p:ajax event="tabChange" listener="#{Bean.onTabChangeElement}" update="tabViewElement:productConfs tabViewElement:cardsElements" />

并在 p:selectBooleanCheckbox 侦听器中添加另一个要更新的组件。

<p:ajax listener="#{ConfigurationProductBean.checkBoxElement}" update="cardsElements :form:tabViewElement:productConfs" /> 

那工作很好!谢谢您的帮助 !

于 2013-07-11T09:36:50.697 回答