3 Replies Latest reply on Nov 4, 2008 3:59 AM by shubniggurath

    <a4j:support> within <rich:fileUpload> is not working

    shubniggurath

       

      <f:view>
      
       <h:form id="uploadform">
       <rich:fileUpload id="uploadCsv" listHeight="100px" listWidth="100%"
       maxFilesQuantity="1" immediateUpload="true" acceptedTypes="csv"
       allowFlash="false" addControlLabel="Import"
       fileUploadListener="#{UploadForm.uploadListener}">
       </rich:fileUpload>
       <a4j:support event="onuploadcomplete"
       actionListener="#{UploadForm.doProcess}" />
      
       </h:form>
      
       </f:view>
      
      


      I want process the uploaddata(doProcess) as soon as it has been uploaded (uploadListener), but this snippet doesnt seem to work for me.

      shub