Questions tagged [dynamic-jasper]

DynamicJasper (DJ) is an open source free library that hides the complexity of Jasper Reports.

DynamicJasper (DJ) is an open source free library that hides the complexity of Jasper Reports, it helps developers to save time when designing simple/medium complexity reports generating the layout of the report elements automatically. (Source: Manufacturer's page)

175 questions
0
votes
0 answers

How to pass parameter value in DynamicJasper 5.0.0+

My question is about a specific situation. Current project is with DynamicJasper 5.0.0. It create a main dynamic report with many subreports concatenate one after another, and each subreport also take an existing jrxml template: String…
Dreamer
  • 7,333
  • 24
  • 99
  • 179
0
votes
1 answer

Trouble using a simple CustomExpression

I see a lot of examples of using CustomExpression but for some reason it doesn't work for me. I am using Java 7, Dynamic Jasper 5.0.2, Jasper Reports 5.5.0. In this simple expression I am just trying to return the string "foo". It seems that…
Irene
  • 1
  • 4
0
votes
1 answer

DynamicJasper & Webstart

I've got a problem using DynamicJasper 5.0.2 with a Webstart application. In eclipse -> No problem but in webstart I've got this error : \\storage1\homes\sourin-v\Bureau\DJR_5724_1433511783056_171003.java:4: error: package…
0
votes
1 answer

How to add label and fields for the Title band of Jasper Report using DynamicJasper?

I want to add various labels in the Title band of Jasper Report using Dynamic Jasper API?
0
votes
1 answer

Dynamic jasper: How to add a vertical line using dynamic jasper API

How to add a vertical line using dynamic jasper API. I need to show a vertical line as a column separator how to do this using dynamic jasper API?
0
votes
1 answer

how to add footer with dynamic jasper other than Autotext in PDF format?

How i can add long text in footer of dynamic jasper report in pdf? Actually i am developing one report with chinese characters and i need to add content in footer but when i add it using AutoText it just print empty space. so looking for solution…
Jitendra Kumawat
  • 133
  • 1
  • 2
  • 12
0
votes
0 answers

Dynamic type column in dynamicjasper

I'm using dynamic jasper to print a form in vertical format(one column for labels and one for values). by now I was using a string column and convert form values to string. But now I should handle image fields. how can I have an image in some rows…
gate sumson
  • 163
  • 1
  • 11
0
votes
0 answers

dynamicjasper Display Static text at the end of the Report on last page

I have a report to build where at the end of the Table I have to print "End of Statement". This static text has to be printed right after the last row of the table. I am using DynamicJasper and I need to know how can I achieve…
0
votes
1 answer

Unable to Display Summary Band in report generated in Excel

I have created a report using ireports and add the text fields in Summary band to display the Average values . I am able to get those in pdf , csv formats but unable to display summary band fields in Excel. Can anyone please help me. Thanks in…
DS kumar
  • 347
  • 2
  • 4
  • 11
0
votes
1 answer

Localizing numeric values in excel

BigDecimal myNumber = new BigDecimal(1234.56); NumberFormat instance = NumberFormat.getInstance(Locale.GERMAN); String localizedNumber = instance.format(myNumber); System.out.print("\nformatting " + localizedNumber); o/p ->1.234,56 Till here code…
Archana Mundaye
  • 523
  • 1
  • 5
  • 19
0
votes
0 answers

DynamicJasper Issue - Cannot run program "javac": java.io.IOException: error=24, Too many open files

When generating the reports using the DynamicJasper API, the below exception is getting thrown. In my logic, around 5000 to 10000 reports will be generating in single execution. Due to this exception, the report generation exception is totally…
0
votes
0 answers

How to add several jrxml files into one master jrxml?

I would like to know whether it is possible to assemble a single report with the given structure using DynamicJasper. The structure: existing jrxml header jrxml generated by Java class using dynamicjasper, holding dynamic data fetched from…
0
votes
1 answer

DynamicJasper API: not aligned border in PDF

When the of a row of my reports gets too long for a single page, it gets continued on the next page, however, the border gets cut off as seen in this image. Any ideas? I'm using JRPdfExporter for exporting reports to PDF. UPDATED: …
lorraine batol
  • 6,001
  • 16
  • 55
  • 114
0
votes
1 answer

How to use jrxml file as design template in DynamicJasper

I am using DynamicJasper to print a report. So far it is printing as a table. But I want to print it as a cheque. I have created the cheque template design as jrxml. I want to pass values which are populated in the table to be passed in to the…
0
votes
1 answer

Add Custom Calculations in the Column Footer using DynamicJasper in Excel report

I am using DynamicJasper ver 4.0.2 and I've created the report in Excel format. The report is having three columns let say A, B and C. In the footer I want total of column A i.e. SUM(A) and Column B i.e. SUM(B) while total of Column…