This content has been marked as final. 
    
Show                 1 reply
    
- 
        1. Re: FileUpload issues in BETA4baileyby Aug 21, 2008 2:07 PM (in response to baileyby)Okay, I apologize. I just stumbled across another post that mentioned the use of a modalPanel in the mix. I did not have a form element INSIDE my modal panel, but rather it was outside. Once I moved the modalpanel outside of the form tag, and then added a form as a child of it, the listener is working (see quick example below). But, I still have the IE "two click" issue if anyone has some hints. 
 BAD:
 Code:
 <h:form id="form1">
 <rich:modalPanel>
 <rich:fileUpload/>
 </rich:modalPanel>
 </h:form>
 GOOD:
 Code:
 <h:form id="form1">
 </h:form>
 <rich:modalPanel>
 <h:form id="form2">
 <rich:fileUpload/>
 </h:form>
 </rich:modalPanel>
 Thanks, Byron
