gpt4 book ai didi

jsf-2 - 如何在primefaces的日历组件中将currentdate设置为mindate?

转载 作者:行者123 更新时间:2023-12-04 08:57:20 25 4
gpt4 key购买 nike

我正在使用 primefaces 的日历组件。我要设置mindate=currentdate.我想限制用户选择当前日期之前的日期。我正在使用 JSF2.0。

最佳答案

只需以通常的方式将其绑定(bind)为 bean 属性即可。

<p:calendar ... mindate="#{bean.currentDate}" />

顺便说一句,您创建当前日期的方式很笨拙。只需调用 Date自己的构造函数就足够了。使用 Calendar为此,只会带来不必要的开销。
private Date currentDate = new Date();

public Date getCurrentDate() {
return currentDate;
}

关于jsf-2 - 如何在primefaces的日历组件中将currentdate设置为mindate?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11012301/

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