5 Replies Latest reply on Mar 9, 2007 1:01 PM by sergeysmirnov

    RichFaces / Tomahawk

    xerces

      I am unable to get the file upload component from tomahawk to work with Rich Faces. The file upload component just doesn't appear on the ui.

      
      <ui:composition template="/common/template.xhtml">
       <ui:define name="body">
       <rich:panel id="testPanel">
       <f:facet name="header">
       <h:outputText value="Upload File" />
       </f:facet>
       <h:form id="testForm" enctype="multipart/form-data">
       <t:inputFileUpload id="fileUpload"
       value="#{testBean.uploadedFile}" required="true" />
       <h:commandButton value="Submit" action="#{testBean.upload}"/>
       </h:form>
       </rich:panel>
       </ui:define>
      </ui:composition>
      
      


      Any Ideas?