I have a ListGrids thatare exported to CSV and Excel formats. When a ListGrid uses a DataSource from a ds.xml that has field titles localized by using jsp and fmt.tld, it puts the whole string between the <title></title> rather than the localized title (or even the fmt:key or field name).
The upshot is on the exports is column titles like "<fmt:message key="site_status_ds_phys_status" />" instead of "Physical status" or "phys_status", for this field:
I was expecting the localized field title or the field name.
I'm using SC_SNAPSHOT-2011-04-05/PowerEdition Deployment (built 2011-04-05).
The upshot is on the exports is column titles like "<fmt:message key="site_status_ds_phys_status" />" instead of "Physical status" or "phys_status", for this field:
Code:
<field name="phys_status" type="number" align="center"> <title> <fmt:message key="site_status_ds_phys_status" /> </title> </field>
I'm using SC_SNAPSHOT-2011-04-05/PowerEdition Deployment (built 2011-04-05).
Comment