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

szaharia

Jaspersoft Staff
  • Posts

    16
  • Joined

  • Last visited

Community Answers

  1. szaharia's post in Excel formula not calculating when using IFERROR and propertyExpression was marked as the answer   
    Hi,
    The IFERROR() function is not recognized by Excel 2003. In this case it should be replaced by IF(ISERROR(...), ... , ...).
    But for Excel 2007 or newer, IFERROR() is the right function, indeed. In this case, please upload a file containing your sample formula.
    Regards,
    sanda
  2. szaharia's post in JRAbstractChartCustomizer vs AbstractChartCustomizer was marked as the answer   
    Hi,
    AbstractChartCustomizer works well with chart components while JRAbstractChartCustomizer is dedicated to built-in JR charts. The spider chart component requires the AbstractChartCustomizer to be used.
    The difference is that while in JRAbstractChartCustomizer the report element is directly accessible, in AbstractChartCustomizer you have to retrieve it from the component context first, in order to use its properties:
    JRElement element = chartComponent.getContext().getComponentElement();
    Regards,
    sanda
  3. szaharia's post in Where can I access the old schema references? was marked as the answer   
    Hi,
    Schema documentation for 4.6.0 is available as part of JasperReports 4.6.0 release. Download the jasperreports-4.6.0-project.tar.gz or zip distribution from the release page and unzip it. Useful documentation files, including schema reference, are stored in the dist/docs folder.
    Regards,
    sanda
  4. szaharia's post in windows 7 error when saving as odt with JasperViewer was marked as the answer   
    Hi,

    Try to download and use JR 4.1.1. Some related OpenOffice bugs were fixed in this version.

    Hope this helps,
    sanda


    Post Edited by shertage at 09/01/2011 08:36
  5. szaharia's post in Multiple datasources using single subreport was marked as the answer   
    Hi,
    Supposing that the table B is called in a detail section, try to put your multiple datasources in a java.util.List parameter (let's name it table_B_datasources, for instance), and in the subreport element containing the table B try the dataSourceExpression below.
    Hope this helps,
    sanda
    Code:<dataSourceExpression><![CDATA[$P{table_B_datasources}.get($P{REPORT_COUNT})]]></dataSourceExpression>
  6. szaharia's post in Ampersand in field value is filling up logs was marked as the answer   
    To be more precise, use $V{name}.replaceAll("&","&")
    Hope this helps,
    sanda
×
×
  • Create New...