我正在准备用户可以在指定时间段内预订房间的应用程序。我想向用户显示一个日历,他可以在其中选择预订的开始日期和结束日期,但我也想标记房间已经预订的日期。是否可以使用 jsf/myfaces?
问问题
126 次
2 回答
1
于 2010-11-11T17:43:35.267 回答
0
只需使用 Ice Faces,您就可以直接使用现成的日历。
< ice:selectInputDate id="fromDateId" renderMonthAsDropdown="true" renderYearAsDropdown="true" value="#{slowMovingSalesOrderAction.fromDate}" title="#{msgs['page.selectInputDate.popup.title']}" renderAsPopup= "真" tabindex="1">
< f:convertDateTime pattern="#{productionRegisterAction.systemDateFormat}" timeZone="#{productionRegisterAction.timeZone}"/>
< /ice:selectInputDate>
于 2010-12-03T11:41:49.577 回答