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

lkaleta

Members
  • Posts

    5
  • Joined

  • Last visited

lkaleta's Achievements

Newbie

Newbie (1/14)

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

Recent Badges

0

Reputation

  1. rpeguet thanks for your help so far! ok, how can I create table with multiple rows ? Lets say that I have a bean: public class Bean { private String a; private String b; private Integer c; // getter and settter ommited } This single bean is only source of data for report, so I am defining 3 fields in mine report: a, b, c Row 1 -> $R{a.key}, $F{a} Row 2 -> $R{b.key}, $F{b} Row 3 -> $R{c.key}, $F{c} I do not see an option to do that.
  2. As far as I understand, table is for collections while mine is just single POJO with couple String fields (free text), integers and BigDecimals. For mine poje I use report parameters. I do not know how can I use parameters with table.
  3. label is TextField, it supposed to be localized -> $R{resource.key} text is also TextField which I do not know how long it will be. So this is like input from html form where user enters data into text area.
  4. I would like to build report which will look like this: label 1: text1 text1 text1 text1 text1 text1 label 2: text2 text2 text2 text2 text2 text2 the labels are taken from resources i18N files. the text for labels can have multiple lines. For now I have it work like this (it is consitent of four text fields) label 1: text1 text1 text1 label 2: text1 text1 text1 text2 text2 text2 text2 text2 text2 Could you please give me a hint how to achive this ? Post Edited by lkaleta at 12/31/2011 12:08
×
×
  • Create New...