我正在尝试以这种方式使用 p:calender(primefaces 3.3) 实现多个日期选择功能。
<p:calendar id="cal" showButtonPanel="true" mode="inline"
value="#{bean.dates}" selection="multiple"/>
在 Backing bean 中,我以这种方式将日期作为数组:
private Date[] dates;
public Date[] getDates() {
return dates;
}
public void setDates(Date[] dates) {
this.dates = dates;
}
但仍然无法选择多个日期。
根据这个博客http://blog.primefaces.org/?p=391它可以工作。
我尝试以相同的方式实施。但没有奏效。为什么会这样?