Jasperreport"

From Documentation
Line 63: Line 63:
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-
|  
+
| 5.0.1
|  
+
| March 2010
|  
+
| Support Hibernate and SQL connections
 
|}
 
|}
  
 
{{ZKComponentReferencePageFooter}}
 
{{ZKComponentReferencePageFooter}}

Revision as of 09:40, 29 June 2010

Jasperreport

Employment/Purpose

The JasperReport component. It is used to generate a Jasper report into an inline frame


Example

ZKComRef Jasperreport Examples.PNG

	<jasperreport id="report" height="360px" />
	
	<zscript>
		import org.zkoss.zkdemo.userguide.CustomDataSource;
		
			//Preparing parameters
			Map parameters = new HashMap();
			parameters.put("ReportTitle", "Address Report");
			parameters.put("DataFile", "CustomDataSource from java");
			
			report.setSrc("/userguide/data/jasperreport.jasper");
			report.setParameters(parameters);
			report.setDatasource(new CustomDataSource());
			report.setType("pdf");
	</zscript>

Supported events

Name
Event Type
None None

Supported Children

*NONE

Use cases

Version Description Example Location
5.0.2 How to use Dynamic Jasper Reports http://www.zkoss.org/forum/listComment/10873

Version History

Version Date Content
5.0.1 March 2010 Support Hibernate and SQL connections



Last Update : 2010/06/29

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.