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