Hello,

We use Wicket with NextReports (http://www.next-reports.com/) and Jasper. 
Basically, in Wicket you will have logic for the form that will fill report
parameters. For Jasper we
also have a logic for edit parameters (we added more functionality to
parameter definition that we could not find in any jasper designer tool).

Depending on how parameters are defined (in your report designer tool) you
may have to add the following business  :
- chained parameters (to fill children parameters if parent parameters are
selected)
- default values (fill default values for parameters)
- hidden parameters (parameters which are substituted with their values when
the report is ran by human process or by scheduler process)

After the parameter values selection process , you will just have to use the
api offered by your reporting framework. 

For example in Next it is simple as this :
 
  FluentReportRunner.report(report)
      .connectTo(connection)
      .withQueryTimeout(60)
      .withParameterValues(createParameterValues())
      .formatAs(ReportRunner.HTML_FORMAT)
      .run(stream);


Douglas Ferguson-2 wrote:
> 
> Hey,
> 
> I'm starting to look into reporting frameworks and was curious if  
> anybody had successfully integrated with wicket?
> 
> Are there any "off the shelf" integrations or will I have to roll my  
> own?
> 
> D/
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Reporting-Framework---Wicket-tp25894303p25910426.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to