I use a birt in my grails application. Currently exporting to excel works, but if let say:
- you have 100 records
it will:
- show 40 records in one sheet and you will end up having 3 sheets in your excel file.
I wanted to know how I can import them in one single sheet to:
- display all the 100 records.
I have Googled it. I can't come up with a clear solution to my IDEAS.
I use the following Code in my Birt:
def IRenderOption options = null
case ReportTypeEnum.XML:
//TODO:
options = new RenderOption(outputFormat: "xml")
break
The emitter I use is :
options = new EXCELRenderOption(outputFormat: "xls")
optiions.setEmitterID("uk.co.spudsoft.birt.emitters.excel.XlsEmitter")
println "Report:"+ options.isEnableMultipleSheet()
Does anybody have any idea? Example :