Jump to content
Changes to the Jaspersoft community edition download ×

Equivalent of IReport classpath menu in Jaspersoft Studio


jeanpierrepolnareff91

Recommended Posts

Hello everyone,

I have found an intersting tutorial on EsProc, and in this tutorial I need to put jars and a folder with a config file inside the "classpath" of IReport (image) :

/sites/default/files/user_uploads/jeanpierrepolnareff91/ireport.png

I think that in Jaspersoft, it is equivalent to this menu (Projet -> properties -> Java build Path) :

/sites/default/files/user_uploads/jeanpierrepolnareff91/jaspersoft.png

Am I right in your opinion ?

Thanks for helping !

Link to comment
Share on other sites

  • 7 months later...
  • Replies 1
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

{
//---------------------------------------------- start java script -------------------------
 
 var param1var = getQueryVariable("singlesingon");
 var path_to_report = getQueryVariable("path_to_variable");
 var report_name  = getQueryVariable("report_name");
 
 if (param1var == 'y')
    window.location.href = "http://localhost:8080/jasperserver/flow.html?_flowId=viewReportFlow&ParentFolderUri="+path_to_report+"&reportUnit="+path_to_report+"/"+report_name;
 
 function getQueryVariable(variable) {
   var query = window.location.search.substring(1);
   var vars = query.split("&");
   for (var i=0;i<vars.length;i++) {
     var pair = vars[i].split("=");
     if (pair[0] == variable) {
       return pair[1];
     }
   }
   //alert('Query Variable ' + variable + ' not found');
 }
 
//---------------------------------------------- end java script -------------------------
}

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...