JasperReports Plug In Now Available

Questions and answers on developing, deploying and using plugins and JavaBeans

JasperReports Plug In Now Available

Postby BDuncan » Thu Feb 22, 2007 1:23 am

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.
BDuncan
 

Postby MSibai » Mon Mar 31, 2008 8:26 pm

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?
Mohamad Sibai
http://www.Nothom.Com
User avatar
MSibai
 
Posts: 145
Joined: Tue Dec 05, 2006 7:17 am
Location: Saudi Arabia

Postby Gordon » Tue Apr 01, 2008 9:20 am

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
User avatar
Gordon
 
Posts: 265
Joined: Thu Mar 17, 2005 8:05 pm
Location: UK

Postby pbakker » Tue Jul 29, 2008 2:41 pm

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
pbakker
 
Posts: 2822
Joined: Wed Oct 01, 2003 8:12 pm
Location: Amsterdam, the Netherlands

Re: JasperReports Plug In Now Available

Postby martinh » Mon Mar 22, 2010 4:58 pm

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
Martin
------------------------------------------------
Servoy Developer
Version 5.2.10/5.2.13
Java version 1.6 update 31
Database SQL Server 2008 R2
martinh
 
Posts: 857
Joined: Wed May 09, 2007 5:34 pm
Location: Belgium

Re: JasperReports Plug In Now Available

Postby pbakker » Mon Mar 22, 2010 7:40 pm

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
pbakker
 
Posts: 2822
Joined: Wed Oct 01, 2003 8:12 pm
Location: Amsterdam, the Netherlands

Re: JasperReports Plug In Now Available

Postby rgansevles » Mon Mar 29, 2010 9:38 am

see my post on this thread: viewtopic.php?p=72890#p72890

Rob
Rob Gansevles
Servoy
User avatar
rgansevles
 
Posts: 1927
Joined: Wed Nov 15, 2006 6:17 pm
Location: Amersfoort, NL

Re: JasperReports Plug In Now Available

Postby briese-it » Fri Sep 02, 2011 2:09 pm

Nothing happend in this thread since 1,5 years!
What about deleting this useless posting? ;-)
Michael Harms
Briese Schiffahrts GmbH & Co.KG, Germany
- Servoy 2020.3.3.3565_LTS Running on Windows 2019 DataCenter - MSSQL2017 & PostGreSQL
User avatar
briese-it
 
Posts: 171
Joined: Mon Jun 20, 2011 1:50 pm
Location: Leer, Germany

Re: JasperReports Plug In Now Available

Postby brasil » Thu Feb 28, 2013 7:41 pm

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
brasil
 
Posts: 5
Joined: Thu Feb 28, 2013 7:37 pm

Re: JasperReports Plug In Now Available

Postby jasantana » Thu Feb 28, 2013 7:56 pm

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)
Best regards,
Juan Antonio Santana Medina
jasantana@nephos-solutions.co.uk
Servoy MVP 2015
Servoy 6.x - Servoy 7.x - Servoy 8.x - MySQL - PostgreSQL - Visual Foxpro 9
User avatar
jasantana
 
Posts: 555
Joined: Tue Aug 10, 2010 11:40 am
Location: Leeds - West Yorkshire - United Kingdom

Re: JasperReports Plug In Now Available

Postby brasil » Thu Feb 28, 2013 10:01 pm

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?
brasil
 
Posts: 5
Joined: Thu Feb 28, 2013 7:37 pm

Re: JasperReports Plug In Now Available

Postby jasantana » Fri Mar 01, 2013 9:45 am

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.
Best regards,
Juan Antonio Santana Medina
jasantana@nephos-solutions.co.uk
Servoy MVP 2015
Servoy 6.x - Servoy 7.x - Servoy 8.x - MySQL - PostgreSQL - Visual Foxpro 9
User avatar
jasantana
 
Posts: 555
Joined: Tue Aug 10, 2010 11:40 am
Location: Leeds - West Yorkshire - United Kingdom

Re: JasperReports Plug In Now Available

Postby brasil » Fri Mar 01, 2013 1:51 pm

is an integer id_conta
brasil
 
Posts: 5
Joined: Thu Feb 28, 2013 7:37 pm

Re: JasperReports Plug In Now Available

Postby brasil » Fri Mar 01, 2013 2:21 pm

iReport parameter in the Value Expression defaul option I have to put something?
brasil
 
Posts: 5
Joined: Thu Feb 28, 2013 7:37 pm

Re: JasperReports Plug In Now Available

Postby jasantana » Fri Mar 01, 2013 5:40 pm

Set the property Parameter Class to java.lang.Integer
Best regards,
Juan Antonio Santana Medina
jasantana@nephos-solutions.co.uk
Servoy MVP 2015
Servoy 6.x - Servoy 7.x - Servoy 8.x - MySQL - PostgreSQL - Visual Foxpro 9
User avatar
jasantana
 
Posts: 555
Joined: Tue Aug 10, 2010 11:40 am
Location: Leeds - West Yorkshire - United Kingdom

Next

Return to Plugins and Beans

Who is online

Users browsing this forum: No registered users and 5 guests

cron