我在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<>();
}
我把代码留给了意大利语,因为它很简单,因为它没有做任何“特殊”的事情。
我做错了什么?我几乎尝试过所有事情,但没有成功:(
提前致谢!
编辑: 我已经尝试将notificationBar的代码移动到另一个页面,一切正常......事情变得非常奇怪; /
答案 0 :(得分:0)
StepTNT ...我相信您需要在数据表中指定filteredValue。通常你在filteredValue中设置一个新的ArrayList()实例,但是最近我遇到了这个问题,它对我来说没有任何实例的filterValue。