Page 1 of 2

JasperReports Plug In Now Available

PostPosted: Thu Feb 22, 2007 1:23 am
by BDuncan
JasperReports is one of the most widely-accepted open source tools used worldwide to design and deploy powerful reports. (Think CrystalReports - but open source). The NEW Servoy Jasper Plugin can help you to extend the JasperReports functionality to your Servoy solutions.

Due to the positive response from the first Servoy JasperReports Training and Plugin sessions given in the US and Europe, Servoy will be offering an ONLINE version of the Servoy JasperReports Training.

Until February 28, you can pre-order the Servoy JasperReports Flash Tutorial Series and save $500 US off the regular price! After February 28, the Servoy JasperReports Training Bundle -- including the on-line tutorials, the Servoy JasperReports Plugin and unlimited deployment license -- will be $2000 US.

To pre-order the special Servoy JasperReports Training Bundle today, please visit the Servoy Store https://secure.servoy.com/

You can also contact Aaron Archer, our newest Business Development Team Member in the USA at aarcher@servoy.com if you have questions and/or want help to place your order.

PostPosted: Mon Mar 31, 2008 8:26 pm
by MSibai
Maybe my question is a little bit late ...

But can we have a flash movie as a demonstration (not a tutorial) about this plug-in?

PostPosted: Tue Apr 01, 2008 9:20 am
by Gordon
MSibai wrote:Maybe my question is a little bit late ...

But can we have a flash movie as a demonstration (not a tutorial) about this plug-in?


Good point - it would be very interesting to see a demo of what the capabilities of Jasper Reports are in Servoy before committing $2k

Gordon

PostPosted: Tue Jul 29, 2008 2:41 pm
by pbakker
As of Servoy 4.0, the plugin is open sourced. Visit the project page at: http://code.google.com/p/servoy-jasperreports-plugin for the latest version, to register issues and feature requests or to download the source and contribute to the project.

Regards,

Paul

Re: JasperReports Plug In Now Available

PostPosted: Mon Mar 22, 2010 4:58 pm
by martinh
Could you make downloads of the JasperReports Plugin based on newer versions of Jasper Reports available on the download pages.
The current version of Jasper is 3.7.1 and that version also uses newer versions of related modules (iText, POI)
So in that case it would keep versions of the plugin together with the version of Jasper.

Now I have situation that the plugin is based on Jasper 3.6 while I had to update Jasper to 3.7.1 because of a bug in Jasper, but now it looks like my report isn't working anymore when running from Servoy.
If you keep the download available for each new version, maybe it can avoid compatability problems.
Maybe a recompile of the plugin with the modules based on Jasper 3.7.1 could solve problems like this

Re: JasperReports Plug In Now Available

PostPosted: Mon Mar 22, 2010 7:40 pm
by pbakker
From the post before yours:
Visit the project page at: http://code.google.com/p/servoy-jasperreports-plugin for the latest version, to register issues and feature requests

Re: JasperReports Plug In Now Available

PostPosted: Mon Mar 29, 2010 9:38 am
by rgansevles
see my post on this thread: viewtopic.php?p=72890#p72890

Rob

Re: JasperReports Plug In Now Available

PostPosted: Fri Sep 02, 2011 2:09 pm
by briese-it
Nothing happend in this thread since 1,5 years!
What about deleting this useless posting? ;-)

Re: JasperReports Plug In Now Available

PostPosted: Thu Feb 28, 2013 7:41 pm
by brasil
I have a question, how can I pass a parameter to the iReport? I want a report transaction, but I want to take account transactions that are selected in Servo Combobox.

I do so.

var o = new Object ();
o.pcustomerid = forms.main.transacao_to_conta.id_conta;
plugins.jasperPluginRMI.runReport ('servoy_money', 'contaTrans.jrxml', null, 'view', {Pcustomerid: forms.main.transacao_to_conta.id_conta});

parameter created in iReport, but do not know if I missed something in the configuration

Re: JasperReports Plug In Now Available

PostPosted: Thu Feb 28, 2013 7:56 pm
by jasantana
This should work, Of course the parameter in iReport must be named as pcustomerid and created with the same variable type

Code: Select all
var o = {pcustomerid : forms.main.transacao_to_conta.id_conta};
plugins.jasperPluginRMI.runReport ('servoy_money', 'contaTrans.jrxml', null, 'view', o)

Re: JasperReports Plug In Now Available

PostPosted: Thu Feb 28, 2013 10:01 pm
by brasil
In Servoy the parameter is an Object? in iReport it has to be an object too, there's more on the purchase incompatibility with the id?

Re: JasperReports Plug In Now Available

PostPosted: Fri Mar 01, 2013 9:45 am
by jasantana
Brasil, you are sending an object with parameters, each property in the object is the parameter that iReport receives. From you sample I guess id_conta is an integer or a UUID.

Re: JasperReports Plug In Now Available

PostPosted: Fri Mar 01, 2013 1:51 pm
by brasil
is an integer id_conta

Re: JasperReports Plug In Now Available

PostPosted: Fri Mar 01, 2013 2:21 pm
by brasil
iReport parameter in the Value Expression defaul option I have to put something?

Re: JasperReports Plug In Now Available

PostPosted: Fri Mar 01, 2013 5:40 pm
by jasantana
Set the property Parameter Class to java.lang.Integer