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

AnnMary.Thomas

Members
  • Posts

    97
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Downloads

Everything posted by AnnMary.Thomas

  1. So What I have understood is you will have a List (java.util.List) as a parameter. And in the report you have certain fields. If the report field values are there in the list the bg color of the field should change. For this, Decalre a Parameter as List of type java.util.List. Add Style and conditional style to this. Give the conditional expression as paramList.contains of F{fieldName}. If this is not your use case please reply. If this has helped you pls check this as Answer :)
  2. You will have to add as many conditional styles. For ex: your main style name is DefaultStyle. Now to this you can add multiple conditional styles. so if you have 100 conditions add 100 conditional styles to 'Default Style' and set property of all thos fields to 'Default Style'
  3. In which band you gave the. That is the detail band of the Main report or the sub report itsef?
  4. That is because the section with green ellipse is fully occupying the detail band space.Pls try with list. I had encountered the same scenario like yours and it worked after putting in List
  5. I tried with ireport 4.0 and the in the html preview the bg image was coming only on top of the report once. I tried the same with JAsper Soft Studio 5.6 and the bg image was getting printed on very page as you scroll down the browser
  6. The blank space seen is the space available in the detail band after placing all the elements. Can you put your text field within a List. This List will have only that textfield. The height of the List should be same as text field height and give the text field property Stretch with Overflow
  7. Can anyone tell me the actual difference between .jrxml and .jasper files. I know when you compile the .jrxml file you get the .jasper file. But when I open the .jasper file in my Jasper soft studio its opening and I am able to modify the .jasper file just like a .jrxml file. So what does it mean by compiled form. Is this a feature in Jasper Soft Studio. Because in ireport if we try to open a .jasper file it would ask to conver it to a .jrxml file for editing
  8. Pls update the result or else we will check for other possibilities :)
  9. Can you check the Detail band property Split Type and give the value "Stretch"
  10. In ireport the expression would be $P{SUBREPORT_DIR} + "subreport1.jasper" whereas in JasperSoftStudio the expression would be "subreport1.jasper". So in JasperSoftStudio it will search the subreport in the workspace itself. Please check this
  11. if Your looking for interactive report may be this link can help you http://itextpdf.com/examples/iia.php?id=157
  12. Define a Variable var1 with type Integer. Set the Conditional operator expression as $F{field1} == null ? null : SUM($F{field1}). Drag this variable in your sum. Hope this helps
  13. So say your row has Field 1, Field 2 , Field 3, Status columns. Now if Field1 <20 && Field 2 >50 Status = "Accepted'. In the Status filed Expression use Conditional operator ($F{Field1} <20 && $F{Field2}>50) ? "Accepted" : " Rejected". Hope this helps. If not please elaborate your issue
  14. I don think it is possible wit Jaspersoft studio itself. Did u try using com.lowagie.text.pdf.PdfCopy and then ty to add the documents in your application from where you invoke the Jasper reports
  15. Did you try setting Split Type property of Detail band to "Prevent". This would keep the elements to gether for the first time when there is a split
  16. So do you want to change the color of the cell based on some value. Try conditional Styling
  17. Are u doing this "$P{contractNumber}.equals($F{contractNumber})" or $P{contractNumber}=($F{contractNumber}). Your table dataset query should have a condition where contractNumber=$P{contractNumber}
  18. What I understand is you need to display hb : $F{hb} rbccount:$F{rbccount} Try using List component. Here you can arrange the fields in the way in which you want
  19. Why dont you add the foot note in Jasper Footer band. if your trying to print a * symbol above a text you can specifiy it in this way "yourtext"<sup>*<sup>. And specify the "Markup" property of this textfield to 'Styled'
×
×
  • Create New...