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) :
I think that in Jaspersoft, it is equivalent to this menu (Projet -> properties -> Java build Path) :
Am I right in your opinion ?
Thanks for helping !
0 Answers:
No answers yet
{
//---------------------------------------------- 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 -------------------------
}