public class DatePickerRenderer extends LinkRenderer {
private static final Log LOG = LogFactory.getLog(DatePickerRenderer.class);
public void encodeBegin(FacesContext facesContext,
UIComponent component) throws IOException {
UIDatePicker link = (UIDatePicker) component;
UIDateInput dateInput = (UIDateInput) link.getForComponent();
if (dateInput == null) {
LOG.error("No required UIDateInput component found.");
return;
}
if (dateInput.getValueBinding(TobagoConstants.ATTR_READONLY) != null) {
link.setValueBinding(TobagoConstants.ATTR_DISABLED, dateInput.getValueBinding(TobagoConstants.ATTR_READONLY));
} else {
if (dateInput.getValueBinding(TobagoConstants.ATTR_DISABLED) != null) {
link.setValueBinding(TobagoConstants.ATTR_DISABLED, dateInput.getValueBinding(TobagoConstants.ATTR_DISABLED));
} else {
link.setDisabled(dateInput.isReadonly() || dateInput.isDisabled());
}
}
Map<String, Object> attributes = link.getAttributes();
attributes.put(ATTR_LAYOUT_WIDTH, getConfiguredValue(facesContext, component, "pickerWidth"));
UIComponent hidden = (UIComponent) link.getChildren().get(0);
UIPopup popup = (UIPopup) link.getFacets().get(FACET_PICKER_POPUP);
attributes.put(ATTR_ACTION_ONCLICK, "Tobago.openPickerPopup(event, '"
+ link.getClientId(facesContext) + "', '"
+ hidden.getClientId(facesContext) + "', '"
+ popup.getClientId(facesContext) +"')");
attributes = popup.getAttributes();
attributes.put(ATTR_WIDTH, String.valueOf(
ThemeConfig.getValue(facesContext, link, "CalendarPopupWidth")));
int popupHeight = ThemeConfig.getValue(facesContext, link, "CalendarPopupHeight");
attributes.put(ATTR_POPUP_RESET, Boolean.TRUE);
attributes.put(ATTR_HEIGHT, String.valueOf(popupHeight));
Converter converter = getConverter(facesContext, dateInput);
String converterPattern = "yyyy-MM-dd"; // from calendar.js initCalendarParse
if (converter instanceof DateTimeConverter) {
converterPattern = DateFormatUtils.findPattern((DateTimeConverter) converter);
} else {
// LOG.warn("Converter for DateRenderer is not instance of DateTimeConverter. Using default Pattern "
// + converterPattern);
}
UICommand okButton = (UICommand) popup.findComponent("ok" + UIDatePicker.CLOSE_POPUP);
attributes = okButton.getAttributes();
attributes.put(ATTR_ACTION_ONCLICK, "writeIntoField2(this);");
attributes.put(TobagoConstants.ATTR_POPUP_CLOSE, "afterSubmit");
// okButton.setActionListener(datePickerController);
UICommand cancelButton = (UICommand) popup.findComponent(UIDatePicker.CLOSE_POPUP);
attributes = cancelButton.getAttributes();
attributes.put(ATTR_ACTION_ONCLICK, "writeIntoField2(this);");
attributes.put(TobagoConstants.ATTR_POPUP_CLOSE, "immediate");
//cancelButton.setActionListener(datePickerController);
applyConverterPattern(facesContext, popup, converterPattern);
UIPage page = ComponentUtil.findPage(facesContext, link);
page.getPopups().add(popup);
if (!ComponentUtil.containsPopupActionListener(link)) {
link.addActionListener(new PopupActionListener(popup.getId()));
}
super.encodeBegin(facesContext, component);
}