Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.7.2
-
Component/s: ICE-Components
-
Labels:None
-
Environment:ICEfaces 1.7.2
Build number: 17
Revision: 17749
JSF 1.1
Apache Tomcat 6
-
ICEsoft Forum Reference:
Description
Whenever you'll try to download a file (defined by the ice:outputResource component) out of a data table list, you'll get always the same file. It is always the last file out of the given list.
<ice:dataTable border="1" var="item" value="#{myBean.dataList}">
<ice:column>
<f:facet name="header">
<ice:outputText value="Resource" />
</f:facet>
<ice:outputResource shared="false" fileName="#{item.fileName}" resource="#{item.fileResource}" />
</ice:column>
</ice:dataTable>
<ice:dataTable border="1" var="item" value="#{myBean.dataList}">
<ice:column>
<f:facet name="header">
<ice:outputText value="Resource" />
</f:facet>
<ice:outputResource shared="false" fileName="#{item.fileName}" resource="#{item.fileResource}" />
</ice:column>
</ice:dataTable>
Issue Links
- depends on
-
ICE-3667 Multiple instances of outputResource do not work correctly together
-
- Closed
-
We are using 1.8.2 and had a problem opening multiple times a file from the data table.
First time, it opens the file correctly with the content. But, when tried second time. It asks to choose an option with a message saying the file is locked for editing. Would you like to open in Read-Only, Notify, Cancel - like we usually see when we access files on a shared drive that is already opened by another user on the network.
This problem is observed with xls,xlsx types typically.