Main

September 29, 2006

SelectComboBox in HTML

Found a great tool for making a select combo box in html.... Particletree ? Upgrade Your Select Element to a Combo Box

August 03, 2006

Fix for incorrect jsf inputCalendar position in tomahawk

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" »

August 02, 2006

IllegalStateException in MyFaces Extension Filter

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....