I'm new to grails.I need to generate reports in pdf or any other format.I have used dynamic-jasper plugin for getting the output in pdf format.I have generated my report using example http://www.grails.org/plugin/dynamic-jasper .
But In that example, report showing all the values that are in database.So i dont want all the values in report.Instead of i need to limit the report. I.e When i search the values(by some sql queries),I'll get a o/p of searched values in a list. So i need the report of searched value list.So please guide me to solve this problem
It sounds like you need to make use of the dataSource property:
Inside the dataSource closure is where your logic should go to limit what is shown in the report(your SQL queries would go here if you were using that). If you scroll down to the salesByStateReport in the "named reports" section on your link you are provided with an example:
If you are using entity format, just change 'dataSource = ' to 'dataSource:' in your static reportable map.
This would be called from the URL like this using entity format:
Or like this in name format: