DynamicJasper icon indicating copy to clipboard operation
DynamicJasper copied to clipboard

Dynamic Reports using Jasper Reports

Results 46 DynamicJasper issues
Sort by recently updated
recently updated
newest added

Hi, i'm trying to set the propertyName of an AbstractColumn to get a value from a HashMap with the key using round brackets but it's not working. I don't get...

Hi Team, Am using FastReportBuilder to build the dynamic reports. And I have the template file (jrxml) and it has the its own fileds. In our Application I have used...

Currently, DJHyperLink only allows to specify tool-tip and hyperlink expression. It would be great if we could also specify hyperlinkTarget attribute supported by all Jasper hyperlink elements. The values for...

Hello, I have a Dynamic Report that generates Jasper Report using DynamicJasperHelper. One of the columns is using Custom Expression. ``` java ColumnBuilder.getNew() .setTitle("Name") .setCustomExpression(new CustomExpression() { @Override public Object...

According to the link http://dynamicjasper.com/2011/12/27/how-to-create-colspan-headers/ I tried to use it in my project in which the error below is presented ``` java.util.ConcurrentModificationException at java.util.ArrayList$SubList.checkForComodification(ArrayList.java:1239) at java.util.ArrayList$SubList.get(ArrayList.java:1043) at ar.com.fdvs.dj.domain.entities.DJColSpan.isFirstColum(DJColSpan.java:91) at ar.com.fdvs.dj.core.layout.AbstractLayoutManager.generateColspanHeader(AbstractLayoutManager.java:529)...

I have been using Dynamic Jasper (java). But i couldn't manage to find typical solution for one problem(better look for my report). The thing is that, for the column chosen...

I need to add a SubReport as a column to my report. However, DynamicJasper ends up making a whole new column header for the new subreport. I wanted to concatenate...

How can I use net.sf.jasperreports.export.xls.pattern ? I try ` SimpleXlsReportConfiguration configuration = new SimpleXlsReportConfiguration(); configuration.setDetectCellType(true); // false also don't help ` ` ColumnBuilder clmb = ColumnBuilder.getNew(); clmb.addFieldProperty("net.sf.jasperreports.export.xls.pattern","[h]:mm"); ` but is...

A column with the Type `ColumnBuilder.COLUMN_TYPE_IMAGE` doesn't respect the added conditonal styles ( to set different background colors). Also reported here [https://sourceforge.net/p/dynamicjasper/bugs/73/] . Is there a workaround?