Jump to content
We've recently updated our Privacy Statement, available here ×

pkozak

Members
  • Posts

    16
  • Joined

  • Last visited

pkozak's Achievements

Explorer

Explorer (4/14)

  • First Post Rare
  • Collaborator Rare
  • Conversation Starter Rare
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. Hi Is it possible to have vertical division in jasperreports to have left part of details section on page 1, and right part on page 2, next page will be de facto on pages 3 and 4, and so on... I need to have a report with many data printed on a4 and I have to realize it in this way thanks in advance PK
  2. Hi I've got problem all columns have data of the same length but in the last row on the page jasperreports breaks data in the middle of the cell I am using jaserreports 1.3.2, I am attaching the file thanks in advance [file name=report.pdf size=11165]
  3. Hello I try to get report_count from subreport via subreport return values, but I get always null value in my variable in main report, what can be wrong, have you got similar problem? thanks in advance PK
  4. Hi Is it possible to put each column in details section on separated page? thanks in advance PK
  5. Hello! I've got problem with xls exporter. When the number of columns is 65000 I don't know why some data from the end (I suppose so) in xls sheet are placed at the beginning of document and overwrite another data. The number of columns is exactly 65000 but xls is filled to the end (that is 65536) and yet about 1000 columns at the begining that overwrite first rows. Any solution why? Thanks in advance. PK
  6. Hello! Does anybody know how should behave xls exporter when number of rows is greater than 66000. When I make an example, it seems that the rows after 65536 are missed. Is it correct? How to place them in second sheet or in another xls file thanks in advance! PK
  7. Hi I'd like to have data header on each page where export format is pdf and only one data header where export format is for example xls how to do it with one template and parameter with export format thanks in advance PK
  8. yes they can, for example column header, but what do you mind saying other band - detail section or any other?
  9. Hello Is it possible to export many reports to one pdf, xls, etc with JasperReports, i.e. I'd like to simply join pages from many reports with one single file. Thanks in advance PK
  10. I generate jrxml from xslt and I want to display parameters of query. Number of parameters may be very different because xslt generate jrxml for many reports. I could obviously modify band height, but I seek nicer solution. PK
  11. I generate jrxml from xslt and I want to display parameters of query. Number of parameters may be very different because xslt generate jrxml for many reports. I could obviously modify band height, but I seek nicer solution. PK
  12. hello It is possible to have subreport in page header section that display whole subreport regardless of numbers of rows in subreport? Thanks in advance Peter
  13. Hi I try to create jrxml file from xslt, when I used in xslt code Code: <textElement> <font size="12" isPdfEmbedded ="true" pdfEncoding="Identity-H"/> </textElement> I've got Could not load the following font : pdfFontName : Helvetica pdfEncoding : Identity-H isPdfEmbedded : true Why? When I use proper name of encoding like ISO-8859-2 or utf-8 the encoding shown in iReport is always cp1250 (taken from Windows I suppose) in file is ok, but generated pdf file use cp1250, I guess, because some polish characters are displayed incorrectly any help? thanks in advance
  14. Hi thanks for help the problem was with 1.2.7 version of jasper with 1.3.0 everytking is ok PK
  15. Hi thanks for reply there is my code below Code: public void exportToXLS(String fileName) throws ReportGenerationException { log.debug(">>"«»); try { File destFile = new File(fileName); JRXlsExporter exporter = new JRXlsExporter(); exporter.setParameter(JRExporterParameter.JASPER_PRINT, jasperPrint); exporter.setParameter(JRExporterParameter.OUTPUT_FILE_NAME, destFile.toString()); exporter.setParameter(JRXlsExporterParameter.IS_ONE_PAGE_PER_SHEET, Boolean.FALSE); exporter.setParameter(JRXlsExporterParameter.IS_WHITE_PAGE_BACKGROUND, Boolean.FALSE); exporter.setParameter(JRXlsExporterParameter.IS_FONT_SIZE_FIX_ENABLED, Boolean.FALSE); exporter.setParameter(JRXlsExporterParameter.IS_REMOVE_EMPTY_SPACE_BETWEEN_ROWS, Boolean.TRUE); exporter.setParameter(JRXlsExporterParameter.SHEET_NAMES, new String[] { "Sheet1" }); exporter.exportReport(); if (log.isDebugEnabled()) { log.debug("nazwa pliku raportu: " + fileName); log.debug("<<"«»); } } catch (JRException jre) { throw new ReportGenerationException("JRException Exception encountered", jre); } } the name of the only one sheet of generated xls is name of jasper template without .jasper (not "Sheet1") Any suggestions? Thanks in advance PK
×
×
  • Create New...