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

flame113

Members
  • Posts

    5
  • Joined

  • Last visited

flame113's Achievements

Rookie

Rookie (2/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. Hi all, I have a problem with iReport. I have a main page which has 2 subreports, each subreport is a table. Subreport1 -----(page break) Subreport2 When data of each subreport is not overflow, each subreport is printed in 1 page. But if one of them is overflow, it will print more than 2 page: subreport1 -> subreport2 - > subreport1 -> subreport2 .... Can anyone help me with this problem pls?
  2. Hi all, I have a list to print out. Before I pass that list to JasperPrint, it has an order but after print out its order has changed. How can I keep order of the list? For example: i have a list {A, B, C, D}. When print it out: {C, A, D, B} Thanks
  3. Hi all, I have a list to print out. Before I pass that list to JasperPrint, it has an order but after print out its order has changed. How can I keep order of the list? For example: i have a list {A, B, C, D}. When print it out: {C, A, D, B} Thanks
  4. Have you tried to set Position Type to Float for both bands yet?
  5. You can also try to import a Formatter class. For example: public String format(Double value) { String result = "0"; if (value != null) { DecimalFormat formatter = new DecimalFormat("#,##0.00"); result = formatter.format(value); } return result; }
×
×
  • Create New...