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

kasiopi

Members
  • Posts

    6
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Security Advisories

Downloads

Everything posted by kasiopi

  1. ok, this is clear to me. thank you very much Lucian
  2. See the net.sf.jasperreports.print.keep.full.text property which was introduced in JR 2.0.3. The flag affects data-oriented exporters such as XLS and CSV. This worked! Thank you very much Lucian. Also, I searched further the forum and found a related issue. But could I pass this property through java code; Have searched in JRExporterParameter and in some subclasses, e.g. JRXlsExporterParameter, but nothing found. Thanks again.
  3. the Jasper engine will always cut off text to fit in its allocated space on the report design (or expand it to the next line). This is still happening? Can someone confirm that there is no any property that can be set so as text not to be cut, while keeping a fixed column's width ?
  4. http://www.jasperforge.org/jaspersoft/opensource/business_intelligence/jasperreports/faq.html The "Page i of n" trick section offers one solution. Hope this helps.
  5. found one solution: encapsulate each Map's element to a class such as Code: public class JREncaplulator { private String key; private String value; public JREncaplulator (String key, String value) { this.key = key; this.value = value; } } and fill the datasource of a subreport Code:[code]JRBeanCollectionDataSource (Set<JREncaplulator >«») In the details band of the subreport u can print the "key" and "value" fields. thanks anyway... Post edited by: kasiopi, at: 2007/11/01 14:05
  6. Hello, I use hql to extract objects to print to my Report. The result set are objects (User) with various properties. One is typed java.util.Map. How can I iterate and print this property?? Should I use subreport and pass this Map as datasource expression? such us JRBeanCollectionDataSource(my Map)? But in this case how would be the fields in the subreport named?? Post edited by: kasiopi, at: 2007/11/01 08:40
×
×
  • Create New...