Popup is not displayed in inputDate...
Hi all,
Iam a newbie to JSF. Iam using MyFaces with Tiles. When iam placing a tomahawk t:inputDate component, the component is visible. But when iam mentioning popupCalender="true", the popup is not displayed. I have enabled Javascript in my browser. but the popup is not displayed. when i click the button beside component to view the popup, it is showing "Errors on page" in the browser status bar. popup is not being displayed. What is the problem? Is it a problem with tiles?
When iam placing the code without tiles, the popup calender is displayed..
Pls help me..
Thanks
[607 byte] By [
jvmana] at [2007-11-27 4:15:52]

# 2
You need to add extensionsFilter in web.xml
<filter>
<filter-name>extensionsFilter</filter-name>
<filter-class>org.apache.myfaces.component.html.util.ExtensionsFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>extensionsFilter</filter-name>
<url-pattern>*.faces</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>extensionsFilter</filter-name>
<url-pattern>/faces/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>extensionsFilter</filter-name>
<url-pattern>*.jsf</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>extensionsFilter</filter-name>
<url-pattern>/jsf/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>extensionsFilter</filter-name>
<servlet-name>Faces Servlet</servlet-name>
</filter-mapping>