我在JSF有月份选择器。它只显示月份和年份。它不能正常工作。
Isssue:
代码:
<rich:calendar id="frommonth" status="rule"
value="#{AddressBean.monthSearch}"
locale="US" datePattern="MMM.yyyy"
oncurrentdateselected="event.rich.component.selectDate(event.rich.date)"
showWeekDaysBar="false" showFooter="true"
popup="true" styleClass="special"
style="width:200px" showApplyButton="true"
inputClass="calenderFld">
</rich:calendar>
式:
<style type="text/css">
.special tr[id] {
display: none;
}
</style>
任何人都可以帮我解决这个问题吗?或者指导我如果有其他方法可以获得JSF中的月份和年份选择器。
答案 0 :(得分:0)
关于当前月份,日历页脚中有一个今天按钮(自showFooter="true"
起),您可以使用该按钮将日历设置为当月。
对于未设置的值,我不确定你的情况究竟是什么,请检查页面中是否存在任何不允许在bean中设置值的验证错误