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

jagadeshkb

Members
  • Posts

    15
  • Joined

  • Last visited

jagadeshkb's Achievements

Explorer

Explorer (4/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Collaborator Rare

Recent Badges

0

Reputation

  1. Hi, I am having an Template Excel file in which I defined some formulae, added image etc. I need to fill the data in that excel file. Is this possible in iReports? Regards, Jagadesh.
  2. I am running reports which has 80000 records, I am able to produce the jprint object. But while exporting the data to XLS. I am getting the following error. java.lang.OutOfMemoryError: Java heap space at net.sf.jasperreports.engine.export.JRGridLayout.layoutGrid(JRGridLayout.java:302) at net.sf.jasperreports.engine.export.JRGridLayout.<init>(JRGridLayout.java:140) at net.sf.jasperreports.engine.export.JRXlsAbstractExporter.exportPage(JRXlsAbstractExporter.java:468) at net.sf.jasperreports.engine.export.JRXlsAbstractExporter.exportReportToStream(JRXlsAbstractExporter.java:448) at net.sf.jasperreports.engine.export.JRXlsAbstractExporter.exportReport(JRXlsAbstractExporter.java:208) But I can run the report in PDF. How to overcome the issue? Regards, Jagadesh.
  3. I am not able to do a PDF or XLS preview in iReport 4.1.1 when the report name is in Japanese. It throws error while exporting the report. Internal preview is working fine. Any help is valuable. Please find the attachment webex recording of this issue.
  4. Hi All, I ran a report through iReport which consists of data in Japanese. When I preview it, through internal Preview, I am able to the see the data in Japanese. But when i do a PDF Preview, none of the Japanese characters are visible. I use iReport 4.1.1. I installed Adobe Reader 9. Can anyone suggest me how can I get the japanese fonts in PDF. Waiting for the reply. Regards, Jagadesh.
  5. Hi All I am developing a plugin for ireport. I am using ModelUtils.getAllElements() to read the design elements and to perform manipulations on those design elements. Scenario: If a user created a table in a report. Inside that TABLE if he places an image or a subreport in it, ModelUtils.getAllElements() api doesnot fetch those children of that table (ie, images or subreports inside the table). If I need to get the designElements inside that table, how should I perform ? Thanks, Jagadesh.
  6. Hi All, When i chose the preview type as XML preview in ireport i could see the output as jrpxml. Is it possible to customize the xml structure in such a way that i can view the output data in the xml structure of my choice ?
  7. I am trying to compile a sub-report from on the fly from java. I placed the subreport expression in the MAIN report as follows. <subreportExpression class="net.sf.jasperreports. engine.JasperReport"><![CDATA[SubReportCompiler.getCompiledReport("reportId")]]></subreportExpression> My subreportcompiler code is shown in the code while I am trying to execute the main report from java. I am getting the following error. (java.lang.String) No such property: SubReportCompiler for class: report2_1280833699753_269232 Do I need to register any of the properties? How to compile the subreport on the fly from java while execution of the main report? Code:public class SubReportCompiler { private static final String JR_XML_HEADER = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" + "<!DOCTYPE jasperReport PUBLIC \"-//JasperReports//DTD Report Design//EN\" \"http://jasperreports.sourceforge.net/dtds/jasperreport.dtd\">"; public static JasperReport getCompiledReport(String reportId) { Report report = Report.getReportObject(reportId, applicationId); String jasperXML=JR_XML_HEADER + report.getJASPERXML(); InputStream jrXMLStream = new ByteArrayInputStream(jasperXML.getBytes()); JasperReport jReport; try { jReport = JasperCompileManager.compileReport(jrXMLStream); } catch (JRException e) { throw new ReportException(e.getMessage(), e); } catch (Exception e) { throw new ReportException(e.getMessage(), e); } return jReport; } }
  8. Hi, Actually my problem is solved. I used the Netbeans 6.5.1 IDE. The Netbeans platform manager I used was 6.0.1 Now I am using Netbeans 6.8 IDE with platform manager as 6.5.1. So now it is possible for me to compile the resources. Thanks for the reply...
  9. Hi, I need to create a new menu item in ireport designer.. For eg. I need to create a menu item "My menu Item " under File menu.. I am not trying to create any plugin. but i am trying to use the ireport sources. Please specify which file i need to modify and how to create a new menu item under file menu.....
  10. Hi, I need to do some customization of the iReport 3.7.2 source code. I am doing that in Netbeans 6.5.1. It requires some netbeans platform manager. Can anyone tell how to add the correct netbeans platform for customizing iReport3.7.2.
  11. I was not able to see any of the docking panes in my ireport designer eventhough i selected the options present in the view menu Attached is the screenshot. I was able to view all the panes earlier when i installed the ireport 3.0.0 I tried reinstalling the ireport3.0.0 but it is of no use. Please anyone help me to fix this issue.. It is really urgent
  12. i am newbie to ireports.. Is it possible to launch the ireport designer from a jsp page ... For eg. on click of the button the ireport designer need to be loaded. It is urgent...plz anyone help me in this issue Thanks in Advance. Post Edited by jagadeshkb at 02/18/2010 09:26
×
×
  • Create New...