Jump to content
We've recently updated our Privacy Statement, available here ×

sray

Members
  • Posts

    17
  • Joined

  • Last visited

sray's Achievements

Apprentice

Apprentice (3/14)

  • First Post Rare
  • Collaborator Rare
  • Conversation Starter Rare
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. Rectangle can't be displayed by HTML as html have similar graphics component deffined, only graphics component that can be implemented using html is solid horizontal line... use frame with border for your application... but be careful about alignments
  2. Yes.. it is possible. only thing that to print your detail band you need to execute a query set a jdbc connection and use a dummy SQL query like: "select 1"
  3. use "n" for break in HTML and JRViewer and "r" for PDF for a better result use it like this "n r"
  4. How u are designing the .jrxml file?? I hope you are using iReport... set your iReport class path where is the hibernate config file is located don forget to in clude the folders where your hibernate hbm.xml files are there and the path of the jar files for the Hibernate. It will work fine then... N.B. You may fine some problem if ur model class size is too big
  5. I have two subreport in my master report. I need to do my final calculation based on the total of the ammount column of each sub report. but when I tried to import the variable from subreport to master onlybultinh subreport variables are visible to me (in iReport 1.3.2). How to import user defined variable from subreport to master?
  6. Hi bkraut can you give us some real code for this please
  7. there is no problem with your jsp... I think you need to make some small changes in in the .jrxml, you have set isBlankWhenNull property true for the textField.. its do well with .PDF and HTML in App. Viewer . but it will give you formatting problem in real html(that you are facing). Just make te following modification: Your code before::S <textField ... > <reportElement ..../> <box ..../> <textElement> <font/> </textElement> <textFieldExpression ...> <![CDATA[($F{Your_Field}]> </textFieldExpression> </textField> New Code::) <textField ... > <reportElement ..../> <box ..../> <textElement> <font/> </textElement> <textFieldExpression ...> <![CDATA[($F{Your_Field}==null) ? new YourDataType(0) : F{Your_Field}]]> </textFieldExpression> </textField>
  8. I have checked your code.. there is nothing wrong ! may be you have set the property of your text field other than String.:dry: you can write the code in better way like follows... u can achive same result with this ($F{cov}==null) ? " ": (""+$F{cov} + " g/l")B)
  9. hi nostro, ktalarico, racerzack, faheemhameed and all other members of this community. It is difficult to set a common external style in JasperReport. Basically JasperReport have too many flaws due to its DTD struture and the only solution is that "let build a new reporting tool". keep eye on: http://reporterray.wikidot.com A new project is coming soon at this address
  10. I am using two sub reports in my report.. First <subreport isUsingCache="true"> . . . . <connectionExpression> <![CDATA[$P{REPORT_CONNECTION}]]> </connectionExpression> <subreportExpression class="java.lang.String"> <![CDATA[$P{SUBREPORT_DIR} + "form76ccReport_subreport0.jasper"]]> </subreportExpression> </subreport> Second <subreport isUsingCache="true"> . . . . <connectionExpression> <![CDATA[$P{REPORT_CONNECTION}]]> </connectionExpression> <subreportExpression class="java.lang.String"> <![CDATA[$P{SUBREPORT_DIR} + "form76ccReport_subreport2.jasper"]]></subreportExpression> </subreport> the first subreport is working fine but in case of second one it is give me the folloing error ErrorÂfillingÂprint...ÂCouldÂnotÂloadÂobjectÂfromÂlocationÂ:Â.form76ccReport_subreport2.jasper net.sf.jasperreports.engine.JRException:ÂCouldÂnotÂloadÂobjectÂfromÂlocationÂ:Â.form76ccReport_subreport2.jasper (I am using iReport 1.3.2) Please tell me what is going wrong... Post edited by: sray, at: 2007/05/04 09:49
  11. helllo, I am Sourav. My organization is using Jasper Report for last few months. We found that the report have so many limitations. So I personally take an initiative to develop a new fully open-source reporting tool (I call it Reporter Ray). Whatever problem you face with Jasper and whatever modification you have done or want to do. Please mail them to me at SRay.coder@gmail.com . Thank you. S.Ray
  12. sray wrote: I need the solution urgenly. Pleas answer to this post if you have any clue.. Sourav
  13. I need to print the report from client's printer. It is needed that the report will be generated from .jrxml file but will not be filled to any File in client PC, rather it will directly go give a prient comand to the printer at clients end. I need urgent help. Thank you Sourav
  14. I need to print the report from client's printer. It is needed that the report will be generated from .jrxml file but will not be filled to any File in client PC, rather it will directly go give a prient comand to the printer at clients end. I need urgent assistance. Thank you Sourav
×
×
  • Create New...