I think you should send this to the dev list, not the user list.

+1. This sounds like good logic to me.

- Jeanne


Danny Robinson wrote:

The current <tr:inputDate> implementation always renders an icon immediately
following the input field.  However, if you specify a <tr:chooseDate> to
render the calendar in-page, it shouldn't render the icon. A simple patch
to SimpleInputDateRenderer fixes this (below).

If there's support for this, I'll submit a JIRA issue.

Danny

PATCH to
org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.SimpleInputDateRenderer

 @Override
 protected void renderAfterTextField(
   FacesContext context,
   RenderingContext arc,
   UIComponent component,
   FacesBean bean) throws IOException
 {
     // Only render the icon if chooseId is not specified.
     if (_getChooseId(arc) == null)
         super.renderAfterTextField(context, arc, component, bean);
 }




Reply via email to