How to generate table in JasperReports - imona/tutorial GitHub Wiki
Hi, Before , we can generate report for entity. You can look at here. But now, we can generate report without entity. You are free than old. Example
var dataSelected = getComponent("IMONA_TRANSIENT_TABLE1").value;//dataSelected is array. we took map in the array
var params = ["": ""];
params.put("mytable", dataSelected); //we have to use "mytable" in jasper
openReportPage('tas', params);We generate a new Report. You can download in here and you can review. We added new fields and new parameters for normal page and table. You must review parameter in table carefully. Because here is complex. Maybe you review xml tab. You understand better.

