inputRichText is not rendering IceFaces 2.0
With icefaces 2 my application is not rendering the richInputText. When I inspect this with firebug it says that it cant find resources
Do you know what it co开发者_JAVA百科uld be causing this behaviour??
I believe that its failing to find the images to render the icons for the rich text editor.
If you are using the standard ICEfaces libraries, these are included in the css resources, so check you've imported the ICEfaces css resources completely.
Solved by adding a extra mapping to the web.xml
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
精彩评论