Jump to content

mavirroco

Members
  • Posts

    4
  • Joined

  • Last visited

mavirroco's Achievements

Rookie

Rookie (2/14)

  • Dedicated Rare
  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare

Recent Badges

0

Reputation

  1. i use field with boolean type and i want to use in a condition expression the values: true,false and null like this : $F{type}==true? new String("Multi") : ($F{type}==null ? new String("") : ($F{type}==false ? new String("Mix") : new String(""))) so the problem is... not recognize null ...instead of null show false..also tried with Set the property isBlankWhenNull to true.that recommend here http://stackoverflow.com/questions/3177323/how-to-avoid-null-values-in-jasper-reports i hope can help me...and if this a bug i hope that 3.7.6 can resolve this
  2. yes i send all parameters... ...i send ok well on my java... but the problem is when i set $P{REPORT_PARAMETERS_MAP}.get("foo") on jrxml this show null and if i put $P{foo} showme error when i compile the report.... i search in docs and never said how to use a single parameter type java.util.Map the real problem for me is that in jrxml this cant read ... any ideas?
  3. thanks lucian but if i do this not recognize in jrxml this parameter if i do this.... maps.put("foo", "bar") $P{REPORT_PARAMETERS_MAP}.get("foo") this is null my idea is send all my parameters via this parameter on REPORT_PARAMETERS_MAP any ideas?
  4. hi folks... im new in jasper reports formum... so i want ask if REPORT_PARAMETERS_MAP is only for subreports? i want send parameters via REPORT_PARAMETERS_MAP for my app in java.. Map mymap=new HashMap(); mymap.put("foo","bar"); maps.put("REPORT_PARAMETERS_MAP",mymap); and get this on jrxml like this $P{REPORT_PARAMETERS_MAP}.get("foo") i hope someboy can help me,... chears Manuel Rodriguez Coria mavirroco@gmail.com Tarija, Bolivia
×
×
  • Create New...