从日历dateSelect事件

时间:2015-06-03 23:40:43

标签: jsf primefaces datatable calendar

我试图从日历dateSelect事件更新dateTable。 我是使用PrimeFaces和Tomcat的新手。

这是我的代码

的index.xhtml



<h:body>
  ...
  <h:form id="cites">
    <p:calendar id="calendari" value="#{indexBean.calendari}" mode="inline" locale="va">
      <p:ajax event="dateSelect" listener="#{indexBean.onDateSelect}" update="taulaHores"/>
    </p:calendar>
    
    <p:dataTable id="taulaHores" var="hores" value="#{indexBean.hores}" 
                 widgetVar="taulaHores" emptyMessage="Sense resultats"
                 filteredValue="#{indexBean.horesFiltrades}" style="width:1000px"
                 selection="#{indexBean.horaSeleccionada}" rowKey="#{hores.hora}">
      <p:column selectionMode="single" style="width:16px;text-align:center"/>
      <p:column id="horaCol" headerText="Hora">
        <h:outputText value="#{hores.hora}">
          <f:convertDateTime type="time" pattern="HH:mm"/>
        </h:outputText>
      </p:column>

      <p:column id="numeroHistoriaColBis" headerText="NHC" >
        <h:outputText value="#{hores.nhc}" rendered="#{not null}" />
        <h:outputText value="Lliure" rendered="#{hores.nhc eq null}" />
      </p:column>
      
      <p:column id="nomColBis" headerText="Nom" >
        <h:outputText value="#{hores.nom}" rendered="#{not null}" />
        <h:outputText value="" rendered="#{hores.nom eq null}" />
      </p:column>
                
      <p:column id="lliangesColBis" headerText="Llinages" >
        <h:outputText value="#{hores.llinages}" rendered="#{not null}" />
        <h:outputText value="" rendered="#{hores.llinages eq null}" />
      </p:column>
    
    </p:dataTable>
  
  </h:form>
    
</h:body>
&#13;
&#13;
&#13;

IndexBean.java

&#13;
&#13;
public IndexBean() {
  omplirHores(new Date(System.currentTimeMillis()));
}

public void onDateSelect(SelectEvent event) {
  omplirHores((Date)event.getObject());
}

private void omplirHores(Date dia){
  SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
  
  this.hores = GenericDAO.sql("SELECT Hores.hora as hora, Hores.numeroHistoria as nhc, Persona.nom as nom, Persona.llinages as llinages " +
      "FROM Hores LEFT JOIN Persona ON Hores.numeroHistoria=Persona.numeroHistoria " +
      "WHERE hora>='"+dateFormat.format(dia)+" 00:00:00' AND hora<='"+dateFormat.format(dia)+" 23:59:59'" +
      "ORDER BY Hores.hora ASC;");
      System.out.println("llistahores " + this.hores.size());
}
&#13;
&#13;
&#13;

然后,当加载index.xhtml时,dataTable&#39; taulaHores&#39;是正确的。问题是当我在日历中选择日期时,dataTable上的行会消失,并且不会使用sql查询中的新值进行更新。

有关详细信息,我会在日志中看到&#39; hores&#39;是对的。

请,任何想法?

提前致谢

2 个答案:

答案 0 :(得分:1)

解决了只删除filteredValue="#{indexBean.horesFiltrades}"属性

的问题

答案 1 :(得分:-1)

更新数据表后,您必须调用它的客户端filter()方法。

<p:calendar id="calendari" value="#{indexBean.calendari}" mode="inline" locale="va">
  <p:ajax event="dateSelect" listener="#{indexBean.onDateSelect}" update="taulaHores" oncomplete="PF('taulaHores').filter()"/>
</p:calendar>