0

我正在准备用户可以在指定时间段内预订房间的应用程序。我想向用户显示一个日历,他可以在其中选择预订的开始日期和结束日期,但我也想标记房间已经预订的日期。是否可以使用 jsf/myfaces?

4

2 回答 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 回答