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

jys

Members
  • Posts

    34
  • Joined

  • Last visited

jys's Achievements

Contributor

Contributor (5/14)

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

Recent Badges

0

Reputation

  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> : " "
×
×
  • Create New...