How do I export a trinidad table into an excel format? I have <tr:table> and some values in it that are displayed using <tr:column>.
<tr:table>
<tr:column>
I want to export those values into an excel sheet.
You can't generate Excel sheets using Apache Trinidad. What you need to do is write an action which:
HttpServletResponse
See:
You can't generate Excel sheets using Apache Trinidad. What you need to do is write an action which:
HttpServletResponse
, resets it, sets the correct headers and outputs your Excel sheet.See: