我正在使用Eclipse Stardust 4.1,JSF 1.2,IceFaces 3.3。在这个脚本中,它将创建多个输入文件标签,但我希望能够识别上传的文件来自哪个输入文件标签基于#{docObject.type}
。如何将此信息传递给支持bean #{DocObject.uploadFiles}
?谢谢。
<ice:panelSeries var="docObject" value="#{IndividualRegistrationBean.docList}">
<ice:panelGrid columns="1" style="border:1px dotted silver;" width="100px">
<ice:outputText value="#{docObject.type} - #{docObject.description}" />
<ice:inputFile id="doc" title="#{docObject.type}" width="600" autoUpload="true"
actionListener="#{DocObject.uploadFiles}" />
</ice:panelGrid>
</ice:panelSeries>