Tagged Questions
The jrxml tag has no wiki summary.
4
votes
2answers
3k views
How do I compile jrxml to get jasper?
I am new to Jasper report framework. I have jrxml file, I want to compile this to get .jasper. How do I compile and get that jasper file?
Please explain in detail
Thanks :)
3
votes
1answer
104 views
iReport - parameterize schema name?
I have the following query :
SELECT
blah
FROM
"PUBLIC"."MYACTIVITY" MYACTIVITY
The problem is, the schema name is different for different environments. I tried making "PUBLIC" a parameter ...
3
votes
1answer
3k views
how to display date in HH:mm:ss format in jasper report?
I am using following code to generate chart in jasper.
<xyLineChart>
<chart evaluationTime="Band">
<reportElement x="0" y="0" width="555" height="500"/>
...
2
votes
2answers
164 views
Jasperreports - hide textfield when not HTML view
I have a jasperreport jrxml which has a hyperlink inside a textfield element.
I do not want to show this hyperlink in anything other than the HTML view because the link does not work in excel, PDF, ...
2
votes
2answers
162 views
how to decompile .jasper files into .jrxml files
I lost all my .jrxml files, but I have .jasper files. Can I decompile .jasper files to .jrxml files. If yes, that would be a great help for me.
2
votes
1answer
101 views
JasperReports - Conditional style per locale?
Is there a way to use a different styles, or redefine a style, based on a report parameter locale? I need to modify font sizes for certain languages.
2
votes
0answers
709 views
Problem with java print and jasper report !
I am using jasper print to print reports. I have designed a report in A5 size but when i print using java print api the size is diminished when i set the print media to A5 and out of scale when I set ...
2
votes
2answers
1k views
How can I set the width of a reportElement using propertyExpression in Jasper Reports
<reportElement x="79" y="103" width="279" height="23" backcolor="#000000">
<propertyExpression name="width"><![CDATA["100"]]></propertyExpression>
</reportElement>
I ...
1
vote
1answer
43 views
Non-fixed width text in a static string - Jasper Reports
So as I have learned since this post: How to stretch a text field relative to data width in Jasper Reports it is not possible to stretch the width of text fields. So I am trying to establish now ...
1
vote
1answer
177 views
How to collate multiple jrxml jasper reports into a one single pdf output file
I have to prepare reports using five different sql queries. Each query will give out one report table.
So I wrote 5 jrxml files each corresponding to one of the above query with their own headings, ...
1
vote
0answers
117 views
Deploying subreports in JasperServer
I have created a frame and subreport for integration with APEX and refined to the point I am ready to deploy on JasperServer. Somehow the exact syntax is defeating me. I've tried all the variations ...
1
vote
1answer
307 views
List as subreport parameter
I need to pass to my subreport a list of integers which will be used as parameter for a IN statement in my query like this :
SELECT * FROM my_tables WHERE $X{IN, table.id || '', PARAMETER_LIST}
I ...
1
vote
1answer
666 views
Multiple Pages in JRXML using iReports for multi page reports
I just wanted to know does iReports/JRXML supports reports which are of multiple pages? If yes, can you give some reference samples?
I am not asking of a report which will grow when data grows.
I ...
1
vote
1answer
138 views
JasperReports Groups
Is there a way to use the first value of the data within a group?
For example I have the following data:
1 12/1
1 12/5
2 1/2
3 5/6
3 6/6
I would like for the data output to be: [with groups]
...
1
vote
1answer
444 views
JasperReports accessing method on bean datasource?
I'm using JasperReports and I'm using the provided JRBeanCollectionDataSource class to wrap a List of beans. Everything works fine in my reports when I'm accessing a simple property of the bean, but ...
1
vote
2answers
5k views
How to create a dynamic report thorough jrxml?
Hey! I am working on jrxml to create dynamic re0ports. I have parameterized the columns i.e. the jrxml for that report can be used to generate other reports as well.
However, i have not managed to ...
0
votes
1answer
35 views
Is it possible to use parameter in queryString tag in jrxml file in jasper report?
I am writing a jasper report program where I want the query to be externalized to properties file.
I am injecting the query as string in my java program.
In the jrxml I have the following ...
0
votes
1answer
32 views
german date format jrxml
Hi I am new in jasper report
how to print date in german format?
<textFieldExpression class="java.lang.String"><![CDATA["München, den " + $P{TO_DATE}]]></textFieldExpression>
...
0
votes
0answers
49 views
How to send arraycollection datas in ireport using jasper
in my application im generating a pdf using ireport.
im sending a arraycollection from java....it has about 8 datafields.
wen i tried to generate pdf...Pdf is generating but it shows null in all ...
0
votes
1answer
140 views
Several queries related to JRXML / Jasper Reports — fixing cell size in excel, using passed parameters in jrxml
I am setting two dates as string in the map as below:
Map<String, String> hashmap = new HashMap<String, String>();
hashmap.put("date1", date1);
hashmap.put("date2", date2);
This i am ...
0
votes
0answers
154 views
Issue in exporting jasperreport to excel
I am trying to export a JasperReport to excel.
The code I am using for that is:
ByteArrayOutputStream output = new ByteArrayOutputStream();
OutputStream outputfile = new FileOutputStream(new ...
0
votes
0answers
79 views
iReport pattern formatting not working
I am generating a report using JasperReports and using iReport to design it. Running Jaspersoft 4 and using iReport 4.1.3 to design the report. The report generates fine as a preview in iReport using ...
0
votes
1answer
57 views
jasper reports access custom data source
I am quite new to Jasper reports and I need to create a report from a custom data source. For this I implemented the JRDataSource interface, with the two methods:
public class FacultyStudentsDS ...
0
votes
0answers
20 views
Alternative to JRDesignTextField to use in detailband in jasper/jrxml?
If I use JRDesignTextField textField in detail band,then some unknown characters could not be exported and throws NPE.Is there any alternative to JRDesignTextField so that it can be used to render ...
0
votes
3answers
110 views
How To Use an external font TTF file which defines a font in foreign language and then use it in a JRXML file?
I am trying to create a pdf document which is internationalized, My specific requirement is to generate a pdf document which has text elements defined in "Marathi" language. I have the TTF file for ...
0
votes
2answers
438 views
JasperReports class path
I want to include the .jrxml file in my NetBeans swing project. I use NetBeans 7.0.1. I created a package inside source package called "rep" and created a simple .jrxml file called "rp.jrxml".
I have ...
0
votes
1answer
240 views
HOW to compile a Jasper report definition file (jrxml) from within Eclipse
I have Eclipse RCP, and I have a los of jrxml files, the idea is that I want a Right Click sub menu within JasperReports submenu, with the option "Compile".
Is that posible ?
If not I have to go one ...
0
votes
1answer
115 views
PDF to Jasper XML
I have a PDF file (softcopy) which was created using iText. Now my company decided to use JasperReports for newrelease. I need to use that PDF file (softcopy) and need to design JasperReports template ...
0
votes
4answers
375 views
Avoid repeating column header in JRXML
how to avoid the column name repeating in JRXML IS THERE ANY ATTRIBUTE FOR AVOIDING THE COLUMN HEADER IN EACH PAGE WHEN GENERATING REPORT USING JRXML AND JASPER?
0
votes
0answers
80 views
Freeze Panes in Excel Sheet jasper Report
Im generating a Jasper Report in Excel Format. I have to freeze the column Header.. How its Possible?? Im using jasperreport3.5.1 jar and itext 2.1.0
Give me some suggestions
Thanxx...
0
votes
0answers
246 views
column header not visible in output
Hi guys i have a JRXML file and when i try to compile that to jasper , it shows some error
My JRXML File
http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="new" ...
0
votes
1answer
259 views
Passing jasper parameters to jrxml using Java
Could anyone please let me know how pass jasper parameters to jrxml using jasper api in java, i need to filter the database reports using input parameters passed by the user.
Regards,
Naresh N.
0
votes
1answer
517 views
Jasper reporting iterate through a list
I have list of strings that to be passed to the jasper report using a hashmap. I want to know how to iterate through that list in the jrxml file and print the contents of the list.. I use Ireport as ...
0
votes
1answer
113 views
JRXML - Display a checkbox in a table.
I can't manage to display a checkbox in a table in jrxml.
Here is a sample of my code:
<detail>
<band height="45" splitType="Stretch">
<textField ...
0
votes
0answers
268 views
Setting position of a report element in jrxml file
We want to create for our client a tool like ireport to change the design of an existing report ,for example changing th position of the title by draging & drop .To do this i have to change the ...
0
votes
1answer
346 views
How to create jrxml for sub reporting
i want create a complex Jrxml (jasper report xml) to create PDF.
in my jrxml i want put another jrxml
so.. my question is how to put one jrxml to another jrxml
my jrxml are salesreport.jrxml , ...
0
votes
2answers
563 views
change the background color of jasper chart
The default background color of jasper chart is sky blue.
I want to change that background color.
How to change it?
0
votes
2answers
4k views
How can I use a conditional TextField in JasperReports?
I would like to have a pair of TextFields depenging on a value. And the "y"-value should be adjusted depending on the empty space.
When the value is "0" I would like to hide the TextField.
I.e. I ...
0
votes
1answer
414 views
how to add date in HH:MM:SS format to the x-axis of the XY-Line chart?
I want to add date in HH:MM:SS format to the x-axis of XY-Line chart.
I am using follwing code to do it.
xValueExpression
![CDATA[new SimpleDateFormat("HH:mm:ss").format($F{time})]]
/xValueExpression
...
0
votes
2answers
1k views
how to pass date as a field in jrxml of jasper reports?
I want tom pass date as a field to the jrxml.
Follwing is the code for it.
But it is not working.
Its giving error as can not cast from date to number.
Then ...
0
votes
1answer
644 views
How to send attribute from Database to dJ to make Report
/*
* DynamicJasper: A library for creating reports dynamically by specifying
* columns, groups, styles, etc. at runtime. It also saves a lot of development
* time in many cases! ...
0
votes
1answer
463 views
Wants an idea of how i can add dynamic jasper to my project
Hey!
Scenario:What my project do right now
User Enters his Login and Password through his mobile phone and servlets contacts webservice of Authentication and user gets authenticated with the system ...
-1
votes
2answers
2k views
Problem, when compiling .jrxml to.jasper files
I have a well working program, which uses JasperReports. It uses JRBeanCollectionDataSource(List items); to populate the rows with data, but if I compile the .jrxml file either with ...