As I see it jasper reports are just a configurable way of using jfreecharts, not sure it that brings more understanding though :)
http://images.google.dk/images?client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&hl=da&source=hp&q=jfreecharts&btnG=S%C3%B8g+i+billeder&gbv=2&aq=f&oq= 2009/10/17 Douglas Ferguson <[email protected]> > I have to admit, I've never used Jasper or NexReports, so I'm not sure > I follow all of this.. > > > On Oct 15, 2009, at 10:14 AM, Decebal Suiu wrote: > > > > > 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: [email protected] > >> For additional commands, e-mail: [email protected] > >> > >> > >> > > > > -- > > 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: [email protected] > > For additional commands, e-mail: [email protected] > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
