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

jajab

Members
  • Posts

    8
  • 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 jajab

  1. Hi, I've been trying to use the formatter function of my Stacked Bar HTML5 Chart but it not working though I have respected the documentation. All I'm trying to do is to hide my dataLabels when the value of the data is lower than 5 : http://joxi.ru/Vm6y4ZdUGvV1rZ And here is my function : http://joxi.ru/12M15zpiZkqj2J "function () {if this.y >5 return this.y else return '';}" I've tried it with the following returns and none of them worked : this.ythis.valuethis.point.ythis.seris.valuethis.seristhis.totalthis.xThank you. Jade
  2. Hi, I'm having that same issue with JRS 6.0.1 and JRS 6.1. My report generated via visualize.js is correctly displayed the first time I call it and then it is not when I simply refresh my page. I have to delete my cookies in order to make it work again. Unfortunately that logout solution is not enough because it won't work if you refresh the page before it's fully loaded. Has anyone ffound a solution for that issue ? Thank you. Jade
  3. Hi, I've been integrating Pro Maps (fusion) on jasper but I cannot export them into PDF or docx format. I've been able to make it work only on PDF format by installing flash player and the map was still interactive as if it is flash in my pdf file. What I would need it to make the Pro Map be exported in jpg or png format so that it works without the flash player installed and and on pdf AND docx. Anyone can help ? Thank you. Jade
  4. 1. Actually Visualize.js does support flash and it works. 2. I've been able to force the pro maps to be generated in HTML5 (svg) in the previsualisation part of the sturio or on the Web UI of Jasper by setting the com.jaspersoft.jasperreports.fusion.maps.render.type=html5 property in WEBINF/classes/jasperserver.properties. But when I try to export my report on pdf or on docx, it is not working UNLESS I do install flash player and that maked it work for pdf only (but not for docx). Furthermore, in this case, the exported map is still interactive in the pdf file as if it was still in flash format. What I would need it to make the Pro Map be exported in jpg or png format so that it works without the flash player installed and and on pdf AND docx. Anyone can help ? tank you.
  5. Hi, I am actually using the Maps Pro component of Jasper Studio. And I have 2 questions : 1. Is it possible to force the map not to be in Flash ? 2. We are using visualize.js to embed our Jasper reports into an external website and visualize.js does not support Flash object. Have you ever tried to export Pro Maps component through visualize.js ? Thank you. Jade
  6. Hi, I've been testing the visualize.js successfully when passing plain text credentials via visualize.js. We need now to add security on authentication : 1. Solution N°1 : Using a CAS server. The problem I am encoutering here is : where do we get the SSO ServiceTicket we are supposed to provide to visualize.js ? (I've made it work by intercepting a ST request sent from another application to CAS and passing the ST to visualize.js and it worked fine.) And should we provide a new ST each time we call a report via visualize.js ? visualize({auth : { token : "ST-40-CZeUUnGPxEqgScNbxh9l-sso-cas.prod.jaspersoft.com"}[/code]2.Solution N°2 : Can we use the plain text authentication method by passing encryted login and password to Jasper via Visualize.js ? The idea would be to synchronize the users between the 2 applications (in my case TYPO3 and Jasper) and let Jasper uncrypt the username and password sent via visualize.js. How can we tell to Jasper (or visualize) that we are sending encrypted credentials and that they should be decrypted ? visualize({auth: {name: "12DCC34CC34CRC4CZZ4CZ",password: "12D756RYH7B5V34033Z",[/code] Thank you for your help. Jade
  7. You may use the blank.htm file that comes out of the box with JapserServer. It will run on Tomcat. You may find it here : jasperreports-server-6.0.1apache-tomcatwebappsjasperserver-pro (windows). Here is my code : <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head> <meta http-equiv="content-type" content="text/html; charset=windows-1250"> <meta name="generator" content="PSPad editor, www.pspad.com"> <title></title> </head> <body><scripttype="text/javascript"src="http://localhost:8080/jasperserver-pro/client/visualize.js?_opt=false&logLevel=debug"></script><!-- Provide the URL to visualize.js --> Jade <div id="container"></div><!-- Provide a container for the report --><script >visualize({auth: {name: "jasperadmin", password: "jasperadmin", organization: "organization_1"}}, function (v) {var report = v.report({resource: "/public/Samples/Reports/9.CustomerDetailReport",container: "#container"});});</script> </body></html>[/code]
×
×
  • Create New...