我想知道如何在默認日期的其他日期設置richfaces日曆。richfaces今日日曆
我想這是因爲時區開始播放,如果應該使用另一個時區而不是服務器的時區,它可能是日曆中選擇的另一個「今天」。
謝謝。
我想知道如何在默認日期的其他日期設置richfaces日曆。richfaces今日日曆
我想這是因爲時區開始播放,如果應該使用另一個時區而不是服務器的時區,它可能是日曆中選擇的另一個「今天」。
謝謝。
嘗試defaultTime屬性
http://docs.jboss.org/richfaces/latest_3_3_X/en/devguide/html/rich_calendar.html
的 「defaultTime」 屬性設置爲當前日期的默認時間值在兩種情況下:
另一個問題是從後端管理「今天」。
如果您有一個支持bean獲取正確的時間,您可以將rich:calendar值綁定到backing bean Date屬性。
支持bean
Class MyBackingBean{
SomeUtil someUtil;
Date today;
@Create
public void init(){
today = someUtil.getCurrentTime();
}
public Date getToday(){ return today;}
}
的Html
<rich:calendar
id="todayDate"
value="#{myBackingBean.today}"></rich:calendar>