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

hozawa

Members
  • Posts

    5,224
  • Joined

  • Last visited

Community Answers

  1. hozawa's post in How to create a JasperServer report using the Java API Rest from an existing .jrxml file? was marked as the answer   
    Unfortunately no. REST API just generates static report. If you want dynamic report, you can use Visualize.js supported in the commercial version
    OR
    write your own server program using JavaScript to do dynamic features.
  2. hozawa's post in help !! fonction count with condition was marked as the answer   
    Just create a Variable.
    Value Class Name: java.lang.Integer
    Calculation: No Calculation Function
    Expression: ($F{row}.compareTo( new BigDecimal("1.9") ) < 1) ? $V{over10} : $V{over10} + 1 
    Initial Value Expression:0
  3. hozawa's post in [Module] cannot be resolved to a type was marked as the answer   
    Try selecting "Project Explorerer". Right click on the project (usually the top element). Select "Build Path" -> "Configure Build Path".
  4. hozawa's post in Hyperlink When Expression does not work was marked as the answer   
    Got it working.
    if (getHyperlinkWhenExpression() == null || hyperlinkWhen == Boolean.TRUE hyperlinkWhen.equals(Boolean.TRUE))
  5. hozawa's post in An error has occurred. Please contact your system administrator. (6632) was marked as the answer   
    If you have comment in your sql, JasperReports Server will return that error. Remove the comments.
    SAlso, check the log files under webapps/jasperserver/WEB-INF/logs folder for more detailed error message.
  6. hozawa's post in Export as XLS Problems was marked as the answer   
    Did you set the following property when exporting to csv?
    net.sf.jasperreports.export.csv.write.bom = true
  7. hozawa's post in "get" command replaced? was marked as the answer   
    I don't think that "get" command nor "getInstance" were JasperReports' commands. You should contact the person who wrote the old report.
  8. hozawa's post in jasperreport on jasperserver can be changed in the query interface to sort it? was marked as the answer   
    Columns in List component and Table component can be sorted and filtered when the report layout is uploaded to JasperReports Server.
     
  9. hozawa's post in Oracle CLOB with HTML and embedded image was marked as the answer   
    This isn't a problem with database but just that JasperReports does not support "<img" tag. "<" is escaped when style is "none" and the tag is just ignored when the style is "html".
    Seems like you'll need to customize html exporter to handle "<img" tags.
  10. hozawa's post in Reports working in iReport, not working in JasperSoft Studio was marked as the answer   
    It seems like you haven't specied a datasource.
  11. hozawa's post in Can I create a report to make an automatically export to a file? was marked as the answer   
    You'll need to write your own program using JasperReports library to do that. Fortunately, it's not too complicated.
  12. hozawa's post in JasperReports 6.2.1 classes import from com.lowagie.* was marked as the answer   
    JasperReports library is using customized version of itext 2.1.7. You'll have to use this version because itext is not compatilble between versions 2.x and 5.x.
  13. hozawa's post in Error with jasperreports-fonts with Java 8u77 and webstart was marked as the answer   
    Java8 is not supported in JasperReports 3.7.1. If your customer wants to use Java8, try JasperReports 6.2.1.
  14. hozawa's post in How can I fill table and list to the end of a page will empty rows was marked as the answer   
    Added "net.sf.jasperreports.components.list.minimum.rows" property to List Component.

     
  15. hozawa's post in Fields Provider Query Executors in Jasper Studio was marked as the answer   
    Check the following page. It's not a general how to on adding query executers but may give you idea on steps required. Jaspersoft Studio is just Eclipse so the page show the basic Eclipse steps on adding jars.
    https://wiki.evolveum.com/display/midPoint/Jaspersoft+Studio+-+midPoint+integration+HOWTO
  16. hozawa's post in Firebird JDBC connection was marked as the answer   
    You have specified which Jaspersoft software you are using. If you are using JasperReports Server, you just have to put the jar file in apache-tomcat/webapps/jasperserver/WEB-INF/lib
  17. hozawa's post in I am getting front page as blank. was marked as the answer   
    I'm using Jaspersoft Studio 6.2.1 and seems to be working OK. It just may be the detail band is not fitting in the page because the first page has Title. Try increasing height of the report and see what happens.
  18. hozawa's post in Runtime change pdf ecryption password was marked as the answer   
    Not with JasperReports Server but if you write your own program with JasperReports library, it's possible to set properties dynamically.
  19. hozawa's post in Page Number was marked as the answer   
    Pass the page number as a parameter to the subreport from the main report.
  20. hozawa's post in Parameter Order Change was marked as the answer   
    From your Jaspersoft Studio, you should be able to just drag and drop parameters to change their order.
  21. hozawa's post in The header does not stay in place to move laterally was marked as the answer   
    Not sure about your question. Are you saying that report displays ok on Jaspersoft Studio but does not appear correctly on JasperReports Server?
    Which version of JasperReports Server and IE are you using? Try viewing the report with Mozilla and Chrome to check if the reports display ok or not. If they do, it may be that you're using IE version not supported by your version of JasperReports Server.
  22. hozawa's post in How could Jaspersoft studio run direct query or live connection to Big database was marked as the answer   
    Have you set the Virtualizer.
    http://community.jaspersoft.com/wiki/virtualizers-jasperreports
  23. hozawa's post in jaspersoft etl community 5.6.2 : unable to download was marked as the answer   
    Jaspersoft ETL is just Talend Open Studio. Just download it from Talend. I think Talend has newer versions available too.
    https://sourceforge.net/projects/talend-studio/files/Talend%20Open%20Studio/
  24. hozawa's post in report not coming was marked as the answer   
    There's a bug in your application. It's probably not setting the datasource correctly.
  25. hozawa's post in group Start New Page setting ignores print when expression? was marked as the answer   
    Instead of setting Start New Page option, how about just using the "break" component with Print When Expression.
×
×
  • Create New...