Jump to content
Changes to the Jaspersoft community edition download ×

ernestoo

Members
  • Posts

    488
  • Joined

  • Last visited

Community Answers

  1. ernestoo's post in Where can I download the project? was marked as the answer   
    Great question! You can go here: https://github.com/TIBCOSoftware/js-docker
  2. ernestoo's post in Detailed hyperlinking on HTML5 charts (Highcharts) was marked as the answer   
    Hello, our very own Steve Park has a great tuturial on YouTube for this, watch it on the Jaspersoft Embedded BI YouTube Channel: 
  3. ernestoo's post in Hide 'Chart Types' in HTML5 Chart was marked as the answer   
    There were some properties you can disable this at either server level, report level or element level:
    For hiding the button for the entire report, you can add this property:
    <property name="com.jaspersoft.jasperreports.highcharts.interactive" value="false"/> 
    For hiding the button only for a specific chart, you can add the property at the element level:
    <reportElement positionType="Float" x="30" y="0" width="499" height="236" uuid="c5501771-9b58-4c5d-9b28-88f7e687f98f">
    <property name="com.jaspersoft.jasperreports.highcharts.interactive" value="false"/>
    </reportElement>
  4. ernestoo's post in Tomcat 8 Compatibility was marked as the answer   
    Java 8 is supported on Jaspersoft 6.1 and above. It seems you have a different error, you might check this post http://community.jaspersoft.com/questions/844795/jasper-server-webapp-dont-start
  5. ernestoo's post in Using formatter function of the HTML5 Pro Charts (highcharts) not working was marked as the answer   
    Did you enable functions in jasperreports.properties? 
    com.jaspersoft.jasperreports.highcharts.function.properties.allowed=true  
    http://community.jaspersoft.com/wiki/functions-can-be-used-format-html5-datalabels-and-tooltips
  6. ernestoo's post in CSV Column alignment was marked as the answer   
    Ultimately your problem is one of alignment...your fields are not on top of each other so the tool is confused as to what to do! the issue is explained well in the FAQ, here's an updated link: http://community.jaspersoft.com/wiki/making-html-xls-or-csv-friendly-reports
    Another trick you might appreciate, for example, when you export to CSV you probably dont want the "Page 1 of 1" stuff showing, you can read this article: http://community.jaspersoft.com/wiki/example-suppressing-headers-main-and-sub-report-elements-when-exporting-xls
    Hope that helps
  7. ernestoo's post in How to disable attribute replacement in Jaspersoft Studio editor? was marked as the answer   
    Yes, this is possible. Under Preferences -> Jaspersoft Studio -> Version -> Set it to version 5.6
  8. ernestoo's post in Maps Pro export on pdf and docx was marked as the answer   
    Unfortunately only PDF & HTML exports work for Flash charts/maps
    This is noted in doc: http://community.jaspersoft.com/documentation/jasperreports-server-user-guide/running-flash-chart
  9. ernestoo's post in Conditional colors to bars in HTML5 charts in Studio was marked as the answer   
    Very late to answer this but here is an example: https://community.jaspersoft.com/wiki/dynamically-updating-bar-colors-html5-bar-charts
  10. ernestoo's post in Rest Api v2 report execution access control was marked as the answer   
    ROLE_USER is required 
  11. ernestoo's post in JasperStudio 6 Base64 image was marked as the answer   
    You will need to import the the commons library:
     
    new ByteArrayInputStream(Base64.decodeBase64($F{Signature}.getBytes())) [/code] 
  12. ernestoo's post in Create a bar chart from flat data was marked as the answer   
    Unfortuantely what you are looking for won't work with that type of data - we need to "pivot" it but there's no built in function for that; ultimately it's best if your data looks like this (key values). Could you do that in the query? The Category would be Fruit, Value is Value.
    User_idFruitValue1Apple11Banana12Apple02Banana2 
  13. ernestoo's post in Will the jasper able to generate pdf file with 50 million records which is present in the data base was marked as the answer   
    I would recommend pushing all the calculations to the database with group by and aggregation functions - don't try to bring that much data "in memory" - also you might look at Infobright as a different MySQL backend to handle large BI queries
     
  14. ernestoo's post in How to create a HTML5 Chart from a datasource was marked as the answer   
    There's an 11 minute video here  you can check http://www.jaspersoft.com/olp/developing-reports-jaspersoft-studio
  15. ernestoo's post in com.jaspersoft.ji.hibernate.dialect.SQLServerJICustomDialect class not found was marked as the answer   
    Unfortunately you can't install the community edition repostiory on SQL Server- CE has to run on Postgres (Per the Platform Support Datasheet)
  16. ernestoo's post in drill down in highCharts with visualize.js was marked as the answer   
    I didn't seem to need the showCursor function to get this working properly...here's my example http://jsfiddle.net/ernestoo/ev1wwsjk/
  17. ernestoo's post in How to recover the default users and view login page again was marked as the answer   
    Try to import the user again, I have exported anonymousUser from my system ( I think that's the only required one)
    I used this command: ./js-export.sh --users anonymousUser --output-zip ~/Desktop/users.zip
    You should be able to import with the UI or with js-import.sh(or bat)
  18. ernestoo's post in How to display chart values in HTML5 charts was marked as the answer   
    This should do it: plotOptions.line.dataLabels.enabled = Boolean.TRUE[/code] 
  19. ernestoo's post in How to get first row's specific column value from a specific group band? was marked as the answer   
    Create a new variable, set "reset group" to your group, calculation to "First" and the field as the variable expression - that do the trick? 
  20. ernestoo's post in Refreshing The Data was marked as the answer   
    Are you using a report you created in iReport from a SQL query or an ad-hoc report you created in the web browser?
    If it's a report created in ad-hoc then by default there's an ad-hoc cache that is used. You can clear the cache by logging in as superuser and clicking Manage -> Server Settings -> Ad-hoc cache
    You can also disable ad-hoc cache:
     
    file: applicationContext-adhoc.xml:

     
     

     
     
  21. ernestoo's post in How to get selected locale in JasperReports Server? was marked as the answer   
    I found a way to get the locale in a JSP page
    You need to import a class first: 
    <%@ page import="com.jaspersoft.jasperserver.war.common.JasperServerConstImpl" %>
    Then you have access to the Locale:
     <%=session.getAttribute(JasperServerConstImpl.getUserLocaleSessionAttr())%>
    I tried this in the "about" box and once logged in was able to see en_US
  22. ernestoo's post in preparing data before generating report was marked as the answer   
    The JasperReports library lets you import any class you want and use in your jrxml expressions, would it make more sense to simply decrypt the data at the report design layer? 
  23. ernestoo's post in Example on how to use the map component? was marked as the answer   
    Ask and ye shall receive :) http://community.jaspersoft.com/wiki/google-maps-add-element-report-using-ireport
  24. ernestoo's post in Best way to deal with multiple datasources was marked as the answer   
    Hey,
    This post explains how to do a master report and sub-reports with different data sources: http://jasperforge.org/plugins/espforum/view.php?group_id=112&forumid=102&topicid=44794 - see post @ 08/25/2008 04:57 PM
    That's one way. Another way is to use the ETL product (http://jasperforge.org/projects/jasperetl) to grab data from your 3 sources and "normalize" it to run reports.
    Let me know if method #1 works for you or not.

×
×
  • Create New...