我希望将maxDate
设置为当前日期。
我试过this answer,但我仍有问题。
这是我的代码:
<sj:datepicker id = "dob"
name = "dateOfBirth"
label = "Date Of Birth"
changeMonth = "true"
changeYear = "true"
yearRange = "1980"
maxDate = "0"
readonly = "true" />
答案 0 :(得分:1)
使用
<sj:datepicker
....
maxDate="%{new java.util.Date()}"
/>
或从getter返回new Date()
,并使用您链接的其他答案中的代码。