Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using primefaces and fileUploadListener to upload an xls file.. The problem is I have a few other field values I want passed along with the file to the backing bean. I select those values from the drop down, but when I choose the file those values are getting cleared out. The form does retain the value if I select those after I choose the file.I want to select the drop down fields and then choose the file. ANy suggestions

Here is the excerpt for xhtml file

<html xmlns="http://www.w3.org/1999/xhtml"  
     xmlns:h="http://java.sun.com/jsf/html"      
     xmlns:f="http://java.sun.com/jsf/core"
     xmlns:p="http://primefaces.org/ui"
     xmlns:ui="http://java.sun.com/jsf/facelets"
 >  

   <h:form id="salesVolumeForm" margin = "0" enctype="multipart/form-data">
   <h:panelGrid columns="2" styleClass="alignTop">
<p:column>    
<p:panel>

  <p:panel styleClass="innerPanel" id="countryMsg" >  
  <h:panelGrid columns="2" columnClasses="label, value" styleClass="grid">  
     <h:outputLabel value="Country: " />
     <p:selectOneMenu  style="width: 185px;" value="#{salesvolMB.selectedCountryId}"  converter = "universal" >  
        <f:selectItem itemLabel="" itemValue="" />  
        <f:selectItems   value="#{salesvolMB.activeCountries}" var="country" itemValue="#{country.id}" itemLabel="#{country.name}" />
          </p:selectOneMenu>

</h:panelGrid> 
</p:panel> 
 <h:message for="countryMsg" id="country_id"  style="color:red" />

 <p:panel styleClass="innerPanel" id="yearMsg" >  
 <h:panelGrid columns="2" columnClasses="label, value" styleClass="grid">  
     <h:outputLabel value="Year: " />
     <p:selectOneMenu  style="width: 185px;" value="#{salesvolMB.selectedYear}" >  
        <f:selectItem itemLabel="" itemValue="" />  
        <f:selectItems   value="#{salesvolMB.yearList}" var="years" />
            </p:selectOneMenu>
              <h:message class="error" for="yearMsg" id="year_id"  style="color:red" />
 </h:panelGrid> 
</p:panel> 

<p:panel styleClass="innerPanel" id="seasonMsg" >  
<h:panelGrid columns="2" columnClasses="label, value" styleClass="grid">  
     <h:outputLabel value="Season: " />
     <p:selectOneMenu  style="width: 185px;" value="#{salesvolMB.selectedSeason}" >  
        <f:selectItem itemLabel="" itemValue="" />  
        <f:selectItems   value="#{salesvolMB.seasonsList}" var="seasons" />
    </p:selectOneMenu>
      <h:message class="error" for="seasonMsg" id="season_id" style="color:red"  />
</h:panelGrid> 
</p:panel> 

</p:panel>

</p:column>    

<p:column>    
<p:panel>    
<h:panelGrid columns="2" columnClasses="label, value" styleClass="grid" id="uploadMsg">  
  <f:facet name="header">
    Data Upload Information
   </f:facet>
   <p:fileUpload fileUploadListener="#{salesvolMB.upload}" description="Select File" required = "true"/>
    </h:panelGrid>
    <h:message class="error" for="uploadMsg" id="upload_id" style="color:red"  />
</p:panel> 
</p:column>    

</h:panelGrid>    

    </h:form>    
</html>  
share|improve this question
although your jsf structure has a number of unusual things like missing <h:body>, columns attribute in conjunction with <p:column>, etc. I can't reproduce the issue. – akoskm Nov 14 '12 at 20:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.