excel-export
excel-export copied to clipboard
excel-export grails plugin
This is a simple fix to an issue making the plugin incompatible with Grails 4+
I migrated an app to grails 4.0.1 and unfortunately, the plugin does not seem to work. Please see the stacktrace below. Any ideas / hints / suggestions? Comment: The error...
I am using this plugin for example: ``` new WebXlsxExporter().with { setResponseHeaders(response) fillHeader(headers) add(datos, withProperties) save(response.outputStream) } ``` Characters like (ñ etc..) does not work in generate excels.
This plugin is still listed under Grails 2 plugins: https://grails.org/plugins/search?q=excel-export The latest version in: https://repo.grails.org/grails/plugins/org/grails/plugins/excel-export/ is version 1.7 which is not a valid plugin (tested with Grails 2.4.4) So i...
I want to change header to bold and background color. How add font styles. const workSheet = {}; workSheet.stylesXmlFile = "styles.xml"; workSheet.name = 'Invoices'; workSheet.cols = [{ caption: 'Buyer', type:...
column width is not increasing. here I'm attaching sample code and output file. let workSheet={} //workSheet.stylesXmlFile = "styles.xml"; workSheet.cols=[{ caption:'key', type:'string', width:50, }, { caption:'buyerKey', type:'string', width:100, }, { caption:'buyerName',...
Say this data contains hundreds but it doesn't fit the template. Should I go manual?
1. Create a template 2. Add "Wrap Text" formatting to a cell A1 3. Write a 250-character data on cell A1 using excel-export 4. Download the file 5. Check the...
!! I found the issue. There was an older version of POI on the classpath!! I use this plugin in almost all my applications. I upgraded to grails 3.3 and...
Assuming I have a code `putCellValue(5, 6, data):` After trial and error, I found out that the 1st and 2nd parameters, 5 and 6, respectively, means that the data will...