在SelectManyCheckbox选择上转换日期

时间:2014-02-24 19:51:24

标签: jsf date primefaces converter

我有一个简单的问题,但我没有找到解决方案。 我有一个简单的p:selectCheckboxMenu,我想在点击按钮后使用selectedDates。

我用f:convertDateTime

尝试了
<h:form id="mainform">
    <p:panelGrid columns="2">
        <p:selectCheckboxMenu label="Date" value="#{myBean.selectedDates}">
                <f:selectItems value="#{myBean.dates}" var="date" itemValue="#{date}" itemLabel="#{myBean.convertDate(date)}"/>
                <f:convertDateTime type="date" pattern="dd-MM-yyyy"/>
            </p:selectCheckboxMenu>
            <p:commandButton value="Test" actionListener="#{myBean.printDates}"/>
    </p:panelGrid>

但是我收到错误消息:“Invaild Value”。

我试过转换器:

@FacesConverter("myDateConverter")
public class MyDateConverter extends DateTimeConverter{

public MyDateConverter(){
    setPattern("MM/dd/yyyy");
}}

<p:selectCheckboxMenu label="Date" value="#{myBean.selectedDates}" converter="myDateConverter">

但同样的错误信息。当我不使用转换器时,我得到“字符串” - 我的日期列表中的值因为类型擦除。

问题:如何将所选日期作为日期?

这是我的完整性bean:

@ManagedBean(name = "myBean")
@ViewScoped
public class MyBean implements Serializable {

private List<Date> dates;

private List<Date> selectedDates;

private SimpleDateFormat dateFormat;

@PostConstruct
public void init() {
    System.out.println("POST CONSTRUCT!");
    dateFormat = new SimpleDateFormat("yyyy.MM.dd");
    dates = new ArrayList<Date>();
    dates.add(new Date());
}

/**
 * 
 */
public void printDates(){
    for(Date d : selectedDates){
        System.out.println(d);
    }
}

/**
 * 
 * @param date
 * @return
 */
public String convertDate(Date date){
    return dateFormat.format(date);
}

1 个答案:

答案 0 :(得分:1)

转换器是问题的根源,因为它会消除时间,然后在转换回Date时使用默认时间。

您可以使用

&LT; f:convertDateTime pattern =&#34; yyyy-MM-dd HH:mm:ss.SSS Z&#34; /&GT;

或尝试使用&lt; f:datetimeconverter&gt;