I found my issue. I'm using tomcat behind apache, and I'm using apache
to serve all the image files.
After I changed the JKUnmount to let tomcat serve images in /faces/,
they appear again.
Thank you for your help.
Murray Brandon wrote:
Do you get a calendar icon next to the date text field (to click on)?
If not, you need to define the resources servlet for MyFaces:
The following defines how the MyFaces resources (such as .js files and
images) are provided in web.xml
<filter>
<filter-name>MyFacesExtensionsFilter</filter-name>
<filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-
class>
<init-param>
<param-name>maxFileSize</param-name>
<param-value>20m</param-value>
<description>Set the size limit for uploaded files.
Format: 10 - 10 bytes
10k - 10 KB
10m - 10 MB
1g - 1 GB
</description>
</init-param>
</filter>
<!-- extension mapping for adding <script/>, <link/>, and other
resource tags to JSF-pages -->
<filter-mapping>
<filter-name>MyFacesExtensionsFilter</filter-name>
<servlet-name>FacesServlet</servlet-name>
</filter-mapping>
<!-- extension mapping for serving page-independent resources
(javascript, stylesheets, images, etc.) -->
<filter-mapping>
<filter-name>MyFacesExtensionsFilter</filter-name>
<url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
</filter-mapping>
-----Original Message-----
From: Joey Geiger [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 29, 2006 4:35 AM
To: MyFaces Discussion
Subject: t:inputCalendar image display
I'm running into an issue where the t:inputCalendar is working properly,
but the images are not being shown.
The renderPopupButtonAsImage="true" doesn't show an image, and the
left/right and dropdown arrows do not appear.
The buttons function properly, as does the rest of the calendar. I
believe this works fine with 1.1.1 release, but as I need a few of the
recent bug fixes, I'm using the currently nightly build.
Anyone have a suggestion/fix?