When using JSF myfaces 1.1.3 tomahawk's inputCalendar, I have some absolute div's on my jsp and my calendar was being positioned incorrectly via it's java script.
After checking Jira log on it [#TOMAHAWK-128] Incorrect inputCalendar position when placed in DIV tag with position: absolute; - ASF JIRA
, I was able to override the included javascript in a parallel package structure at:
org.apache.myfaces.custom.calendar.resource
(see the extended entry for the javascript submitted
Continue reading "Fix for incorrect jsf inputCalendar position in tomahawk" »
I've been receiving this error from myfaces tomahawk 1.1.3 with weblogic 8.1 sp5
java.lang.IllegalStateException: getOutputStream() has already been called for this response
from the myfaces extension filter...
<filter-mapping>
<filter-name>MyFacesExtensionsFilter</filter-name>
<url-pattern>*</url-pattern>
</filter-mapping>
I fixed it by changing my mapping to the following:
<filter-mapping>
<filter-name>MyFacesExtensionsFilter</filter-name>
<url-pattern>*.jsf</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>MyFacesExtensionsFilter</filter-name>
<url-pattern>/faces/*</url-pattern>
</filter-mapping>
But to verify, I changed it back to:
<filter-mapping>
<filter-name>MyFacesExtensionsFilter</filter-name>
<url-pattern>*</url-pattern>
</filter-mapping>
And added an index.jsp that forwarded to my home.jsf page and now it works fine....