Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 3.2
-
Fix Version/s: 3.3
-
Component/s: ICE-Components
-
Labels:None
-
Environment:Any
Description
The compat ice:dataExporter doesn't seem to process ice:commandSortHeader components inside header facets. When the column label is inside this component, it won't appear in the exported excel file. The following markup illustrates this scenario:
Activity
| Repository | Revision | Date | User | Message |
| ICEsoft Public SVN Repository | #32138 | Tue Nov 13 14:46:53 MST 2012 | art.zambrano | |
| Files Changed | ||||
MODIFY
/icefaces3/trunk/icefaces/compat/components/src/main/java/com/icesoft/faces/component/dataexporter/DataExporter.java
|
| Field | Original Value | New Value |
|---|---|---|
| Reporter | Migration [ remote ] | Arturo Zambrano [ artzambrano ] |
| Description |
The compat ice:dataExporter doesn't seem to process ice:commandSortHeader components inside header facets. When the column label is inside this component, it won't appear in the exported excel file. The following markup illustrates this scenario: <ice:column> <f:facet name="header"> <ice:commandSortHeader columnName="ID" arrow="true" > <ice:outputText value="ID"/> </ice:commandSortHeader> </f:facet> <ice:outputText value="#{car.id}"/> </ice:column> |
The compat ice:dataExporter doesn't seem to process ice:commandSortHeader components inside header facets. When the column label is inside this component, it won't appear in the exported excel file. The following markup illustrates this scenario: |
| Assignee | Arturo Zambrano [ artzambrano ] |
| Status | Open [ 1 ] | Resolved [ 5 ] |
| Resolution | Fixed [ 1 ] |
| Status | Resolved [ 5 ] | Closed [ 6 ] |

<ice:column>
{car.id}"/><f:facet name="header">
<ice:commandSortHeader columnName="ID" arrow="true" >
<ice:outputText value="ID"/>
</ice:commandSortHeader>
</f:facet>
<ice:outputText value="#
</ice:column>
was:
The compat ice:dataExporter doesn't seem to process ice:commandSortHeader components inside header facets. When the column label is inside this component, it won't appear in the exported excel file. The following markup illustrates this scenario:
<ice:column>
<f:facet name="header">
<ice:commandSortHeader columnName="ID" arrow="true" >
<ice:outputText value="ID"/>
</ice:commandSortHeader>
</f:facet>
<ice:outputText value="#{car.id}
"/>
</ice:column>