0

我对 PrimeFaces 的 NotificationBar 有一个奇怪的问题。

我的代码正在运行,但是添加 NotificationBar 会使其以一种奇怪的方式运行!

我在 DataTable 中显示来自会话 Bean 的数据。一切都很好,但是,一旦我添加了这个 NotificationBar,数据表就会变成空并且没有内容被获取:/

这是一些代码:

<!-- NOTIFICATION BAR headerMain.xhtml -->
    <h:form>
        <pou:poll autoStart="#{loginBean.logged}" global="false" interval="5" oncomplete="notificationBar.toggle()" update=":notificationBar"/>
    </h:form>


    <pou:notificationBar effect="slide" id="notificationBar" rendered="#{messagesBean.checkDaNotificare()}" widgetVar="notificationBar">                            
        <h:outputLink value="./faces/messaggi.xhtml">                                        
            <h:outputText value="Hai 1 messaggio da leggere" rendered="#{messagesBean.daNotificare==1}"/>
            <h:outputText value="Hai #{messagesBean.daNotificare} messaggi da leggere" rendered="#{messagesBean.daNotificare > 1}"/>
        </h:outputLink> 
    </pou:notificationBar>

_

<!-- DATATABLE IN messaggi.xhtml -->
<pou:dataTable editable="false" id="conversationList" resizableColumns="false" rowKey="#{conversazione}" selection="#{messagesBean.destinatario}" selectionMode="single" value="#{messagesBean.listaConversazioni}" var="conversazione" widgetVar="conversationList" paginator="true" paginatorPosition="bottom" rows="20">
                        <pou:ajax event="rowSelect" oncomplete="conversationDialog.show()" update=":conversationDialog, :menuPanel"/>
                        <pou:column>
                            <f:facet name="header">
                                <div style="padding-left: 45%">
                                    <h:outputText value="Conversazioni"/>                                                                                                                            
                                    <h:form>
                                        <pou:commandButton value="+" onclick="newMessageDialog.show()" style="margin-left: 67%"/>
                                    </h:form>
                                </div>
                            </f:facet>
                            <h:outputText value="#{conversazione.username}"/>
                        </pou:column>
                    </pou:dataTable>

_

//Method used by NotificationBar to see if it has to be rendered
public boolean checkDaNotificare() {
    System.err.println(daNotificare);
    daNotificare = 0; //Riazzero, quelli precedenti li avrò già notificati
    for (Messaggio m : getMessaggiDaLeggere()) {
        System.err.println("Controllo " + m);
        if (!messaggiNotificati.contains(m)) { //Conto i messaggi da notificare, che sono quelli da leggere meno quelli già notificati
            System.err.println("___Non l'avevo ancora notificato!");
            daNotificare++;
            messaggiNotificati.add(m);
        }
    }
    return (daNotificare > 0);
}

_

//Method used by the datatable to fetch data
public List<Utente> getListaConversazioni() {
    listaConversazioni = messageManager.getUtentiConversazioni(utente);
    return listaConversazioni;
}

/**
 * PostConstruct method to initialize things
 */
@PostConstruct
public void init() {
    listaConversazioni = messageManager.getUtentiConversazioni(utente);
    messaggiNotificati = new LinkedList<>();
}

我用意大利语留下了代码,因为它很简单,因为它没有做任何“特别”的事情。

我究竟做错了什么?我几乎尝试了一切,但没有成功:(

提前致谢!

编辑:我尝试将通知栏的代码移动到另一个页面,一切正常......事情变得很奇怪;/

4

1 回答 1

0

StepTNT...我相信您需要在数据表中指定filteredValue。通常你在 filtersValue 中设置一个新的 ArrayList() 实例,但最近我遇到了这个问题,它对我使用 filtersValue 没有任何实例。

于 2013-10-31T20:11:33.930 回答