我尝试使用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;
}
}
这显示以下内容:
问题在于,当我尝试更改日期时,日历不起作用。
如何让它发挥作用?