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

jys

Members
  • Posts

    34
  • 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 jys

  1. how to make the whole report as bold dynamically according the needed(whether bold need or not) thanks
  2. if you want to use it in query convert the date into sql date querydate = new java.sql.Date(<date>) ex. select * from .. where fromdate>='querydate'
  3. Is it possible to edit the text field values in HTML/pdf format as what we doing in Excel format.
  4. how to make the field editable after took print out in pdf
  5. exporter.setParameter(JRHtmlExporterParameter.SIZE_UNIT,JRHtmlExporterParameter.SIZE_UNIT_POINT)
  6. Hi, Is it possible to allow user can edit the textField value after report get printed in html format on screen. thanks
  7. Place ur subreport on detail band of main report.Use group by.(group expression= $F{somevalue}.this field value should be same for all row records of main report. So that it will execute only once.
  8. pass parameters on url. use that parameter in query like $P!{paramtername}
  9. print only once for each group for example,result set having the following, fruits place consumption(tonnes) Mangoes UK 24 Tomatoes UK 33 Tomatoes USA 30 Apple UK 30 PineApple UK 12 PineApple RSA 11 Now i want to sum up the consumption for each fruits,and print only once on report like the following. Mangoes 24 Tomatoes 63 Apple 30 PineApple 23 Can anyone know the way to achieve this.if so,let me know .
  10. $F{name} + " (born " + (new java.text.SimpleDateFormat("dd MMM yyyy").format(F{date_of_birth})) +")" make class type as String
  11. $F{name} + " (born " + (new java.text.SimpleDateFormat("dd MMM yyyy").format(F{date_of_birth})) +")"
  12. print only once for each group for example,result set having the following, fruits place consumption(tonnes) Mangoes UK 24 Tomatoes UK 33 Tomatoes USA 30 Apple UK 30 PineApple UK 12 PineApple RSA 11 Now i want to sum up the consumption for each fruits,and print only once on report like the following. Mangoes 24 Tomatoes 63 Apple 30 PineApple 23 Can anyone know the way to achieve this.if so,let me know .
  13. Below coding on textfield expression <ur field value> !="" ? <ur field value> : " "
  14. put ur subreport on page header.in subreport,fields in detail band
  15. How to Integrate jasper report with spring.From where the jasper file(.jasper) need to call.
  16. create one textField,right click on it,there is one option like HyperLink(tab). Give anchor name expression = "hyperlink" book mark level =0 hyperlink target =blank hyperlink type = reference inside hyperlink reference expression, "c:mylinkhello.html" after compliling,click on that.that will open hello.html
  17. TextField properties --> common(tab) ==> there can select "remove line when blank". This will work.
  18. I think i meant wrong. U go to developer forge(which is present on left side of the page) and create userid and password there and post ur future request.
  19. ($F{fld_bs}.equals("3")) ? $F{konto} : $F{konto_1}
  20. This functionality already there.
  21. HI I am using Group in my report.I declared one variable which evaluating for each row in datasource.I want to execute only once for each group and that variable value should available to calculate with group detail text field values. Can anyone help me! Thanks
×
×
  • Create New...