Hi Mike!
I not sure if this is can be changed, but i need a special focus renderer output for HtmlInputDate, look this:
HtmlFocusRenderer.java:
was
if(targetComponent != null)
{
String clientId = targetComponent.getClientId(facesContext);
now:
if(targetComponent != null)
{
String clientId = targetComponent.getClientId(facesContext);
if(targetComponent instanceof org.apache.myfaces.custom.date.HtmlInputDate)
clientId += ".day";
--
Yours truly (Atenciosamente),
Rogério

