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
3
votes
1 answer

Dynamic-jasper: column height with configuration.setWrapText(true)

I'm using dynamic jasper 5.0.3 to generate xlsx file. When I set in SimpleXlsxReportConfiguration to wrap text like this: configuration.setWrapText(true) I have problem with column height in rows where at least one cell has content width is larger…
3
votes
1 answer

DynamicJasper: How to remove line when blank

I am generating a report with the DynamicJasper, I want to remove a report line, when line is blank. I know how to do in JasperReports. But can anyone suggest me how to remove blank line through DynamicJasper using the java code.
jaxb
  • 2,077
  • 3
  • 20
  • 32
3
votes
1 answer

Is there an easy way to use JasperReports from Clojure?

I see there is a Scala wrapper for JasperReports, and I found a Clojure library for Scala interoperability, as well as a snippet of example code by a beginner from this discussion but I can't find any libraries or working example code for Jasper or…
sventechie
  • 1,859
  • 1
  • 22
  • 51
3
votes
1 answer

How to set column width dynamicaly in dynamic jasper excel report?

I am developing excel report using DynamicJasper API. I am able to generate the report from the given datasource, but the columns in the report still appeared very narrow. I searched to get a solution for this, in many place people answer with…
Ajil Mohan
  • 7,299
  • 2
  • 18
  • 18
3
votes
1 answer

How to set background color for row with dynamic jasper report?

I am new to jasper, i know its a basic question. I spent lot of time to get a solution for this , but didn't get a solution for this so far. I am working a module where i have to generate report by using jasper.I implemented code for pdf generation.…
Ajil Mohan
  • 7,299
  • 2
  • 18
  • 18
3
votes
2 answers

display a report for collection of different beans

Suppose I have 2 beans: Award Employee I add both of them in a collection. Based on this collection I want to generate a report using DynamicJasper using JRBeanCollectionDataSource. I'm able to generate the report for a single bean, but for…
Chetan Pulate
  • 503
  • 1
  • 7
  • 21
3
votes
1 answer

(Dynamic Jasper Reports) Importing parameters from a custom .jrxml fil

I'm developing a Java project with JasperReports(v.4.0.6) and DynamicJasperReports(v.4.0.1). I have generated a custom .jrxml with the most recent iReport plugin for Eclipse. In my .jrxml report, I define two parameters which will be filled by the…
lyreil
  • 31
  • 2
2
votes
1 answer

How to move field to the top when others field at top blank

I haved created 5 parameters field at page header.When the parameter key in nothing then it will appear blank. My problem is how to make the parameter P_2 move to the top when parameter P_1 key in nothnig.
Rozie Rozack
  • 61
  • 1
  • 4
2
votes
1 answer

How to add page number option in footer with DynamicJasper API?

I am creating report with help of code: FastReportBuilder fr = new FastReportBuilder(); I want to add page number in footer of each page like. page 1/3 page 2/3
Muhammad Imran Tariq
  • 22,654
  • 47
  • 125
  • 190
2
votes
1 answer

dynamic jasper report multi row header

using "Dynamic Jasper", how do you create table header(addColumn) that has multiple rows? for example HEADING1 | HEADING2 | HEADING3 HEADING4 | HEADING5 | HEADING6 HEADING7 | HEADING8 |…
superfish
  • 103
  • 2
  • 7
2
votes
1 answer

Jasper Print creation is very slow

I try to create a Jasper Print with an ResultSet to build an PDF Report with the print. The Problem is, that the creation of the Jasper Print is very slow. The ResultSet is a Table with about 5000 Rows. It takes more than 2 Minutes to create the…
pmueller
  • 143
  • 1
  • 19
2
votes
0 answers

Set Different titles for global footer variables in Dynamic Jasper?

Can we set different titles for global footer variables? I have a requirement to display footer variables as below: Total Days : 120 Average Days : 20 Remaining Days : 5 Currently I am only able to set one title for all the variables. I have added…
Naveen
  • 141
  • 1
  • 1
  • 8
2
votes
1 answer

How to use DynamicJasper with jsf 1.2

I found example with static jasper and jsf and its work but in dynamic jasper can't work( When I try to export my JasperPrint I have a strange exception at…
Anuhastik
  • 261
  • 1
  • 2
  • 14
2
votes
2 answers

How to display sum of each columns at footer in JasperReports without groups using DynamicJasper?

I tried using the method below. drb.addGlobalFooterVariable(totalAmount, DJCalculation.SUM); drb.addGlobalFooterVariable(basicAmount, DJCalculation.SUM); But it shows me the value of last row (of each column) instead of the sum of each column in…
2
votes
0 answers

daynamicjasper bangla font (unicode) vowel symbol not showing correctly

I am facing a problem in showing bangla fonts (Nikosh) in daynamicjasper reports. What I have achieved is as follows: But I want the following: Can anyone help me what am I missing? My code: StyleBuilder sb = new StyleBuilder(false); Font font =…
sarwar026
  • 3,821
  • 3
  • 26
  • 37
1
2
3
11 12