3 Replies Latest reply on Jul 2, 2010 12:22 PM by nbelaevski

    Supporting jar file for <comp:fileUpload>?

    eswaramoorthy1985

      Hi,    I have use the following tag. But i don't know the exact jar file.

       

      i want to add that library in my project.


      <%@ taglib uri="/tags/taglib" prefix="comp"%>
      
      

       

      and tag :


      <comp:fileUpload value="#{uploadBean.uploadedFile}"
                       uploadIcon=""
                       uploadOnMouseOver=""
                       uploadOnMouseOut=""
                       styleClass=""
                       progressBarStyleClass=""
                       cellStyleClass=""
                       activeStyleClass=""/>
      
      

       

       

      i hope get the library name.

      Thanks in advance.

        • 1. Re: Supporting jar file for <comp:fileUpload>?
          yyq2009

          Look at tags/taglib for more informaiton.

          • 2. Re: Supporting jar file for <comp:fileUpload>?
            eswaramoorthy1985

            Hi  Daniel Yang, Thanks for your support.

             

            I just create folder 'tags' under web in my project. Then i create a file 'taglib.tld' in 'tags' folder. (MyProject/web/tags/taglib.tld)

             

            Then download the following source and then paste to 'taglib.tld'. Now Accept this <comp:fileUpload/> tag.

             

            Source available : http://today.java.net/article/2006/02/07/better-file-uploads-ajax-and-javaserver-faces#comment-15044

             

             

            <?xml version="1.0" encoding="ISO-8859-1" ?> 
            <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN" "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd"> 
            <taglib> 
              <tlib-version>1.0</tlib-version> 
              <jsp-version>1.2</jsp-version> 
              <short-name>comp</short-name> 
              <uri>/taglib</uri> 
              <display-name>Upload Component</display-name> 
              <description>Upload Component</description> 
                 
              <tag> 
                <name>fileUpload</name> 
                <tag-class>jsf.component.FileUploadTag</tag-class> 
                    <body-content>JSP</body-content> 
                <description> 
                      This is the tag that creates a file upload component and it's associated progress bar (assuming you have the right filters in place). 
                </description> 
             
                <attribute> 
                  <name>id</name> 
                  <required>false</required> 
                  <rtexprvalue>false</rtexprvalue> 
                  <description> 
                      The component identifier for this component.  This value must be 
                      unique within the closest parent component that is a naming 
                      container. 
                  </description> 
                </attribute> 
                 
                <attribute> 
                  <name>rendered</name> 
                  <required>false</required> 
                  <rtexprvalue>false</rtexprvalue> 
                  <description> 
                      Flag indicating whether or not this component should be rendered 
                      (during Render Response Phase), or processed on any subsequent 
                      form submit. 
                  </description> 
                </attribute> 
             
                <attribute> 
                  <name>value</name> 
                  <required>true</required> 
                  <rtexprvalue>false</rtexprvalue> 
                  <description> 
                    The 'FileItem' bound to this progress bar component. 
                  </description> 
                </attribute> 
             
                <attribute> 
                  <name>styleClass</name> 
                  <required>false</required> 
                  <rtexprvalue>false</rtexprvalue> 
                  <description> 
                    The style of the overall div that surrounds this component 
                  </description> 
                </attribute> 
             
                <attribute> 
                  <name>activeStyleClass</name> 
                  <required>false</required> 
                  <rtexprvalue>false</rtexprvalue> 
                  <description> 
                    The style class of an active cell in the progress bar 
                  </description> 
                </attribute> 
             
                <attribute> 
                  <name>cellStyleClass</name> 
                  <required>false</required> 
                  <rtexprvalue>false</rtexprvalue> 
                  <description> 
                    The style class of a normal cell in the progress bar 
                  </description> 
                </attribute> 
             
                <attribute> 
                  <name>progressBarStyleClass</name> 
                  <required>false</required> 
                  <rtexprvalue>false</rtexprvalue> 
                  <description> 
                    The style class of the rendered progress bar. 
                  </description> 
                </attribute> 
             
                <attribute> 
                  <name>uploadIcon</name> 
                  <required>false</required> 
                  <rtexprvalue>false</rtexprvalue> 
                  <description> 
                    The Icon the user is to click on in order to upload the file to the server.  
                  </description> 
                </attribute>   
                 
                <attribute> 
                  <name>uploadOnMouseOver</name> 
                  <required>false</required> 
                  <rtexprvalue>false</rtexprvalue> 
                  <description> 
                       Javascript event for a mouse over on the upload button. 
                  </description> 
                </attribute>  
                 
                <attribute> 
                  <name>uploadOnMouseOut</name> 
                  <required>false</required> 
                  <rtexprvalue>false</rtexprvalue> 
                  <description> 
                       Javascript event for a mouse out on the upload button. 
                  </description> 
                </attribute>  
                 
                 
              </tag> 
               
            </taglib>
            
            • 3. Re: Supporting jar file for <comp:fileUpload>?
              nbelaevski