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

Parameters in DynamicJasper AutoText fields?

Given a report with a parameter, say foo with value bar, I'd expect the following to either print bar if it supported parameters, or $P{foo} if it only supported static text. AutoText showBatchAutoText = new AutoText("$P{foo}", …
inanutshellus
  • 9,683
  • 9
  • 53
  • 71
0
votes
1 answer

How to send attribute from Database to dJ to make Report

/* * DynamicJasper: A library for creating reports dynamically by specifying * columns, groups, styles, etc. at runtime. It also saves a lot of development * time in many cases! (http://sourceforge.net/projects/dynamicjasper) * *…
Sundhas
  • 605
  • 4
  • 10
  • 18
0
votes
0 answers

DynamicJasper doesn't apply conditional styling if the column type is Image

DynamicJasper doesn't apply conditional styling if the column type is Image. This bug is true for setPrintBackgroundOnOddRows and addConditionalStyle() If you print out jrxml file the style for image column is missing the conditionalStyle tag. Style…
adevroy
  • 1
  • 1
0
votes
2 answers

Unable to get instance of subReport of jasper report in program

if (jrDetailObj instanceof JRDesignSubreport) { \\codes } can anyone please tell me how to get the instance of sub report from jasper
Nivi
  • 29
  • 2
0
votes
1 answer

Loading a jrxml file under Tomcat

I have a web app that uses JasperReports to power data export to Excel, PDF & CSV. It's a grails app using the DynamicJasperReports plugin and it uses a jrxml file as the template for the report. This was working but has broken following some…
gabe
  • 1,127
  • 1
  • 11
  • 23
0
votes
1 answer

NullPointer while loading jrxml file with DynamicReport object

I am trying to load a JasperReports jrxml template to my DynamicReport object but I am getting a null pointer without knowing from where it comes. The code practically is like this: DynamicReport dr = new DynamicReport(); DynamicReportBuilder drb =…
Noah Martin
  • 1,708
  • 9
  • 35
  • 73
0
votes
0 answers

Add ImageColumn

I should like to use an image in a column. FastReportBuilder drb = new FastReportBuilder(); drb.addImageColumn("Example", expression, 20, true, ImageScaleMode.NO_RESIZE, myStyle); CustomExpression iexpressionr = new CustomExpression() { String…
0
votes
1 answer

Hiding column when all column cells value is zero

I want to hide in my report the columns that have all the cells value 0. Is this possible? I also generate global footer variables for each column. Maybe I can access the global footer variable and check if it's 0 then hide the…
0
votes
0 answers

Group header width

How to set group header width? I have three columns which takes about 50% of paper, but group header spans to whole page width. Is there a way to control width of group header? Here is picture of my…
milorad.kukic
  • 506
  • 4
  • 11
0
votes
1 answer

I could not access to DynamicJasper maven repository

What happen with this repo? http://archiva.fdvs.com.ar/repository/public1/ I tried to use it yesterday and today but I could not was migrated?
0
votes
1 answer

DynamicJasper: 3 report sections in one page

I wanted to generate a report as this design: 2013 2012 2011 NewCol1 NewCol2 Dept Item col1 col2 col3 col4 col1 col2 col3 …
Learner
  • 73
  • 3
  • 9
0
votes
1 answer

DynamicJasper 5.0 Missing artifact

So I want to work with DynamicJasper 5.0.0. I copy their dependency and repository as is described on their webpage. fdvsolution.public
decal
  • 987
  • 2
  • 14
  • 39
0
votes
1 answer

Exporting the report in pdf format is having some issues

I am having some issue while exporting report to the PDF. Following are the issues that I am facing 2nd and 3rd columns are not proper (one column is left aligned and other is right aligned). The last line of the column is getting repeated…
0
votes
2 answers

Created pie chart using DynamicJasper API

I am trying to generate a report dynamically with JasperReports and DynamicJasper APIs. I added pie chart to reports but after drb.addChart(djChart) chat added as null. Here is my code: private static DynamicReport createPieChart() { …
Olga Lisa
  • 31
  • 2
  • 8
0
votes
1 answer

How to expand/resize background band of jasper report dynamically?

I am using jasper report to download some document in pdf format. I have several subreports and their content may vary according the data coming and hence height of each subreport changes on runtime. I required to set a border on each subreport…
MKB
  • 7,587
  • 9
  • 45
  • 71
1 2 3
11
12