gpt4 book ai didi

jsf - 有没有办法验证丰富的:calendar if the date selected is before a specific date?

转载 作者:行者123 更新时间:2023-12-02 13:24:03 25 4
gpt4 key购买 nike

我有这个组件:

<rich:calendar enableManualInput="true" value="#{home.born}" datePattern="dd/MM/yyyy" />

我需要验证所选日期是否等于或早于当前的实际日期...有没有办法只使用 rich:calendar 来做到这一点,或者我必须将其验证到家庭中?

问题解决了!我使用了 Balusc 提供的解决方案。谢谢大家! :)

最佳答案

要在服务器端验证它,您可以使用验证器

<rich:calendar ...>
<f:validator validatorId="notAfterToday" />
</rich:calendar>

@FacesValidator("notAfterToday")
public class NotAfterTodayValidator implements Validator {

@Override
public void validate(FacesContext context, UIComponent component, Object value) throws ValidatorException {
Date date = (Date) value;
Date today = new Date();

if (date.after(today)) {
String message = "Date may not be later than today.";
throw new ValidatorException(new FacesMessage(message));
}
}

}

关于jsf - 有没有办法验证丰富的:calendar if the date selected is before a specific date?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6445827/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com