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

visualize.js with jsfiddle doesn't work


vbence

Recommended Posts

<!-- Provide URL to Visualize.js --><script type="text/javascript" src="https://serverAddress/jasperserver-pro/client/visualize.js"></script><!-- Provide container to render your visualization --><div id="container"></div>[/code]

and this is the js:

visualize({    server: "https://serverAddress/",    auth: {        name : "jasperadmin",        password: "mypassword",        organization:"organization_1"    }}).done(function(v){    var report         = v.report({ resource: "/KSZF/NYITOTT_KOTESALLOMANY/NyitottKotesallomany", (I watched this for web ui report mouse right click properties, so the kszf is in the root (http://snag.gy/BHQG1.jpg))                    container: "#container"    });}).fail(function(err){ alert(err.message); });[/code]

My report run well in web ui, and i see visualize.js get request worked in the browser(chrome), but I have different errors:

Uncaught TypeError: Cannot read property 'done' of undefined fiddle.jshell.net/:29Failed to load resource: the server responded with a status of 500 (Internal Server Error)https://serverAddress/xdm.html?logEnabled=true&logLevel=error&xdm_e=http...[/code]

I try many things, different settings, but cant work.

any idea?

thanks

Link to comment
Share on other sites

  • Replies 2
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Looks like a network issue.. You can try it locally.

Anyway you can put visualize.js in debug mode by adding "&logLevel=debug" at the end of the script call like:

<script src="http://bi.example.com:8080/jasperserver-pro/client/visualize.js?logLevel=debug"></script>
 
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...