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

hopesolutions

Members
  • Posts

    7
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Downloads

Everything posted by hopesolutions

  1. I might have fixed the issue by making a font extension to map standard SansSerif font to Arial, with nothing to change in current reports, just put the jar in the application folder and printing shows bold with only isBold.... Code:<bean id="fontSansSerifFamily" class="net.sf.jasperreports.engine.fonts.SimpleFontFamily"> <property name="name" value="SansSerif"/> <property name="normal" value="fonts/arial.ttf"/> <property name="bold" value="fonts/arialbd.ttf"/> <property name="italic" value="fonts/ariali.ttf"/> <property name="boldItalic" value="fonts/arialbi.ttf"/> <property name="pdfEmbedded" value="false"/></bean> Post Edited by hopesolutions at 04/01/2010 13:39
  2. I want to stay away from the arial font and embedding. the question is how does iReport 3.7.1 work with just: <font isBold="true" /> while when in application it doesn't? does ireport pass extra params/maps? use extra libraries?
  3. Ok, this thread is old, but i still have the issue: I upgraded from jasper-reports 2.0.5 to 3.7.1, and started updating the jrxmls. before i uses to use pdfFontName="Helvetica-Bold" to get the bold effect, but now i am using only isBold="True". in iReport the preview is ok, but printing from the web application i get no bold at all. what should i do to enable the isBold on the default Helvetica font? FONT_MAP is old as many writes in this forum.... is there a ready font-extgension for helvetica fonts?
  4. We are using the jasper library 2.0.4 in an enterprise WAR web application which is deployed on Oracle OC4J J2EE server running on Windows Server 2003, but there is a problem whenever we deploy a new WAR to the OC4J server using the Enterprise Manager (hot deploy, and not complete server restart), the print application will stop working giving this error: Code:net.sf.jasperreports.engine.JRRuntimeException: net.sf.jasperreports.engine.JRException: Incompatible net.sf.jasperreports.engine.JRDefaultScriptlet value assigned to parameter REPORT_SCRIPTLET in the modulo_intestazione dataset. at net.sf.jasperreports.engine.fill.JRFillSubreport.prepare(JRFillSubreport.java:622) at net.sf.jasperreports.engine.fill.JRFillElementContainer.prepareElements(JRFillElementContainer.java:344) at net.sf.jasperreports.engine.fill.JRFillBand.fill(JRFillBand.java:346) at net.sf.jasperreports.engine.fill.JRFillBand.fill(JRFillBand.java:305) at net.sf.jasperreports.engine.fill.JRVerticalFiller.fillTitle(JRVerticalFiller.java:313) at net.sf.jasperreports.engine.fill.JRVerticalFiller.fillReportStart(JRVerticalFiller.java:247) at net.sf.jasperreports.engine.fill.JRVerticalFiller.fillReport(JRVerticalFiller.java:113) at net.sf.jasperreports.engine.fill.JRBaseFiller.fill(JRBaseFiller.java:891) at net.sf.jasperreports.engine.fill.JRBaseFiller.fill(JRBaseFiller.java:795) at net.sf.jasperreports.engine.fill.JRFiller.fillReport(JRFiller.java:63) at net.sf.jasperreports.engine.JasperFillManager.fillReport(JasperFillManager.java:402) at net.sf.jasperreports.engine.JasperFillManager.fillReport(JasperFillManager.java:234) the only solution is to restart the server. what can be done to fix this?
  5. I have just seen that the new JasperReports 2.0.5 includes support for html/rtf formated markup language, but till what level of markup does it support? I am interested in having lists (both ordered and unordered), but it doesn't seem that HTML markup do export correctly <ul>, <ol> or <li> elemetns. my request is to have a bulleted list (even with a simple dash - but have some indentation for each point if the text spans more than 1 line. any idea? (sorry for the double post, slow internet issue) Post edited by: hopesolutions, at: 2008/03/18 13:30
  6. I have just seen that the new JasperReports 2.0.5 includes support for html/rtf formated markup language, but till what level of markup does it support? I am interested in having lists (both ordered and unordered), but it doesn't seem that HTML markup do export correctly <ul>, <ol> or <li> elemetns. my request is to have a bulleted list (even with a simple dash - but have some indentation for each point if the text spans more than 1 line. any idea?
  7. It doesn't seem to work. I am developing a java application on an italian server, but want numbers to come in english format, and i keep getting wrong formatting. i want 1,234.56 but i get 1.234,56. i passed to jasper the parameter REPORT_LOCALE as desired but it seems the JasperReports 2.0.4 doesn't use it to format the numbers. the problem is that in iReports exports it is correct, only the web generated pdf is wrong. I checked here but they all suggest using custom java classes or scriptlets to do this, but is there a way to make this with default jasper reports features and locales ?? Thanks
×
×
  • Create New...