Je vous serais gree si quelqu'un peut m aidez sur la manière de modifier l heur dans un Rich calanadr:

càd donner l heur du système

Voila l'EB:
package ms.marchandise.com;
import java.text.DateFormat;
import java.util.Date;
import java.util.Locale;

import javax.faces.event.ValueChangeEvent;

public class CalendarBean {

private Locale locale;
private boolean popup;
private String pattern;
private Date selectedDate;
private boolean showApply=true;
private boolean useCustomDayLabels;

public Locale getLocale() {
return locale;
}

public void setLocale(Locale locale) {
this.locale = locale;
}

public boolean isPopup() {
return popup;
}

public void setPopup(boolean popup) {
this.popup = popup;
}

public String getPattern() {
return pattern;
}

public void setPattern(String pattern) {
this.pattern = pattern;
}

public CalendarBean() {

locale = Locale.FRANCE;
popup = true;
pattern = "d/M/yy HH:mm";
}

public void selectLocale(ValueChangeEvent event) {

String tLocale = (String) event.getNewValue();
if (tLocale != null) {
String lang = tLocale.substring(0, 2);
String country = tLocale.substring(3);
locale = new Locale(lang, country, "");
}
}

public boolean isUseCustomDayLabels() {
return useCustomDayLabels;
}

public void setUseCustomDayLabels(boolean useCustomDayLabels) {
this.useCustomDayLabels = useCustomDayLabels;
}

public Date getSelectedDate() {
return selectedDate;
}

public void setSelectedDate(Date selectedDate) {
this.selectedDate = selectedDate;
}

public boolean isShowApply() {
return showApply;
}

public void setShowApply(boolean showApply) {
this.showApply = showApply;
}

}
l'EB est récuperer de live démo de jboss

et voila l appelle:

<rich:calendar id="calendar" value="#{calendarBean.selectedDate}" locale="#{calendarBean.locale}" popup="#{calendarBean.popup}" datePattern="#{calendarBean.pattern}" showApplyButton="#{calendarBean.showApply}" cellWidth="24px" cellHeight="22px" style="width:200px"/>