I hope you have set renderAsPopup="true"
Are you providing scripts or using the default scripts? Are getting any 
javascript errors? Have you setup your ExtensionFilter correctly.. 
I was having a similar problem because my Filter wasn't set properly.

here is my filter setting 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 must match the name of your 
javax.faces.webapp.FacesServlet entry -->
            <servlet-name>faces</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>       
        <filter-mapping>
            <filter-name>MyFacesExtensionsFilter</filter-name>
                <url-pattern>*.jsf</url-pattern>
        </filter-mapping>       
        <filter-mapping>
            <filter-name>MyFacesExtensionsFilter</filter-name>
                <url-pattern>*.jsp</url-pattern>
        </filter-mapping>

I am using tomahawk 1.1.3, so check the location of filter in your jar file and 
put the correct package here.

Sushma

On Tue, 03 Apr 2007 Gerald wrote :
>
>Hi guys!
>
>I have a problem about the inputCalendar of Tomahawk MyFaces. The problem is
>when I press the button of t:inputCalendar component, the calendar does not
>pop-out. I am using Tomahawk MyFaces 1.1 and Jakarta Tomcat 5.0.28.
>
>Please this is urgent.
>
>Thank you very much
>--
>View this message in context: 
>http://www.nabble.com/inputCalendar-did-not-display-tf3509566.html#a9802938
>Sent from the MyFaces - Users mailing list archive at Nabble.com.
>

Reply via email to