JSFiddle - React, Tailwind, and code Playground

by srikar7

HTML

<link rel="stylesheet" href="http://gridster.net/dist/jquery.gridster.min.css">
<script src="http://localhost:8081/jasperserver-pro/client/visualize.js"></script>
<div id="c1" style="width:400px;height:500px"></div>

JavaScript

visualize({
    auth: {
        name: "superuser",
        password: "superuser"
    }
}, function (v) {
   
    v("#c1").report({
        resource: "/public/Samples/Reports/AccountList",
        //uncomment to change default behaviour
        //scale: "width",
        //scale: "height",
        //scale: 3,
        scale: "container",
        error: function (err) {
            alert(err.message);
        }
    });
});