模式MMM / yyyy在日历中不适用于Primefaces

时间:2013-09-28 01:13:06

标签: jsf-2 primefaces calendar date-format

我尝试使用primefaces 3.5的简单日历,我只需要显示月份和年份,所以我使用模式MMMM / yyyy并显示月份和年份的名称,这是代码:

 
 <p:calendar  value="#{controlador.fecha}" pattern="MMMM/yyyy">

 </p:calendar>

豆子:

@ViewScoped
@ManagedBean
public class Controlador {

   private Date fecha;

   @PostConstruct
   public void init(){
       this.fecha = new Date();
   }

   /**
   *@return the fecha
   */
   public Date getFecha() {
      return fecha;
   }

   /**
    * @param fecha the fecha to set
    */
   public void setFecha(Date fecha) {
      this.fecha = fecha;
   }

}

这显示以下内容:

enter image description here

问题在于,当我尝试更改日期时,日历不起作用。

如何让它发挥作用?

0 个答案:

没有答案