Re: Excel download question

2011-04-05 Thread Johann Werner
Hi Markus, I never used the ERExcelListPage but when using Apache POI directly you have to adapt the cell style to accept line breaks: Workbook wb = ...; Sheet sheet = ...; Row row = ...; Cell cell = ...; String value = string with line breaks; CellStyle wrappingStyle = wb.createCellStyle();

Excel download question

2011-04-04 Thread Markus Ruggiero
Just a quick question regarding ERExcelListPage: How can I add a line break inside one Excel cell? I have a toMany relationship where the customer wants the values of a destination key put into one Excel cell as a single multi line value. How can I do this? I already have a simple custom