Hi all,

Has anyone succeeded in getting t:inputCalendar to work with the above
combination?
It appears really nothing is rendered...

Apart from the libs in mentioned in subject line, this is my page:

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
<html
   xmlns="http://www.w3.org/1999/xhtml";
    xmlns:f= "http://java.sun.com/jsf/core";
    xmlns:ui="http://java.sun.com/jsf/facelets";
    xmlns:h="http://java.sun.com/jsf/html";
    xmlns:s="http://myfaces.apache.org/sandbox";
    xmlns:t="http://myfaces.apache.org/tomahawk";
    xmlns:c="http://java.sun.com/jsp/jstl/core"; >

        <body topmargin="0" leftmargin="0" rightmargin="0" bgcolor="#ffffff"
marginheight="0" marginwidth="0" class="body">
        
        
        <ui:composition template="/resources/pages/MeToMaAppTemplate.xhtml">
    <ui:define name ="navigation" />
    <ui:define name ="body">
    <div align="center">

        <h:form id="studyOverviewForm" styleClass="body">
        
[snip]
        
        <h:outputLabel value="Study Summary Data" styleClass="titleText"/>
        <br/>
        <table class="overviewTable">
        <tr>
        <td>
        <h:panelGrid columns="4" border="0">
                <h:outputLabel value="Study Sponsor: "/>
                
                <h:selectOneMenu value="#{studyOverviewBean.study.sponsor}" >
                        <f:selectItem itemLabel="Choose One" 
itemValue="choose_one"/>
                        <t:selectItems value="#{utilBean.sponsors}" 
var="sponsor"
itemLabel="#{sponsor}" itemValue="#{sponsor}"/>
                </h:selectOneMenu>
                
[snip]          
        
        </h:panelGrid>
        </td>
        <td 
style="border-left-width:1px;border-left-style:solid;border-left-color:black;">
        
        <h:panelGrid columns="2" >
                <h:inputText value="#{studyOverviewBean.study.testPhase}"/>
                
                <h:outputLabel value="&#160;&#160;Planned Start Date"/>
                <t:inputCalendar        
                                        renderAsPopup="true"
                                        popupButtonString="Click here to show 
Calendar"
                                        renderPopupButtonAsImage="true"
                                        popupDateFormat="dd/MM/yyyy"
                                        required="true"
                                        
value="#{studyOverviewBean.study.plannedStartDate.date}" >
                                                                        
                </t:inputCalendar>
                
                [snip]

                
        </h:panelGrid>
        </td>
        </tr>
        
        <tr>
                [snip]
        
        </h:form>
        <h:messages styleClass="error"/>
        <br/>
        </div>
        </ui:define>

    </ui:composition>
        </body>
</html>

Other Tomahawk components seem to work fine.
-Wolf

Reply via email to