excel-export icon indicating copy to clipboard operation
excel-export copied to clipboard

excel-export grails plugin

Results 30 excel-export issues
Sort by recently updated
recently updated
newest added

WebXlsxExporter needs a constructor ``` WebXlsxExporter(InputStream stream) { ... } ``` to support loading of templates from resources. Right now the work around is: ``` def template =grailsApplication.parentContext.getResource("classpath:ReportTemplate.xlsx").inputStream tempFile =...

Error : org.codehaus.groovy.grails.web.pages.exceptions.GroovyPagesException: Error processing GroovyPageView: getOutputStream() has already been called for this response Code: ``` def export() { def list = financialSettlementService.getDietitianList(params) def headers = ['Tax'] def withProperties =...

Please add an example of how to export a result set (not just list of domain objects)

I did it using: ``` getSheet().addMergedRegion(new CellRangeAddress(0,0,0,4)); ``` It could be useful a specific method

I did it using: ``` CellManipulationAbility.getOrCreateCellAt(4, 5, getSheet()).setCellFormula("SUM(A3:D3)") ``` it could be useful a method like putCellValue but for formulas: putCellFormula

Hi, we need to export domain entities with atribute: static hasMany = [ordersClient: OrderClient] The best solution is each item from ordersClient pass at new line... is it possible and...

Hello I´m facing the issue when running that sample code package webserver import pl.touk.excel.export.* class ReportingService { ``` static transactional = false def caseReport(cases){ def caseList = cases def withProperties2...

Hi, Quick question regarding this awesome plugin. I'm using the following approach: ``` new WebXlsxExporter().with { setResponseHeaders(response) fillHeader(headers) fillRow(["aaa", "bbb", 13, new Date()], 1) save(response.outputStream) } ``` ... but the...

question

What if I need to put and Image in a certain cell of each row?

question