Re: Jasper plugin. Passing additional parameter

2007-11-05 Thread Tom Schneider
Serg, I'm not an expert at jasper reports, but I think parameters are pulled from the datasource. In that case, the jasper report result wraps the datasources in a ValueStackDataSource. (a class located in the jasper reports plugin) I would set a few breakpoints in there to see why the jasper pl

Re: Jasper plugin. Passing additional parameter

2007-11-05 Thread Manjesh Reddy
have you tried using and passing the parameters to JasperReport manually using a HashMap something like this... HashMap parameters = new HashMap(); parameters.put("test", test); JasperReport jasperReport = JasperCompileManager.compileReport(jasperD