Jump to content
Changes to the Jaspersoft community edition download ×

accessing param data in call to Visualize.js


bplummer

Recommended Posts

 Visualize question that should be obvious (but obviously not to me …)

Doing a demo.  I want to flip between params to show different data.  Is there a way to read the param that was passed in, in javascript, so I can do a conditional?  This is what I have – want to make the button toggle between “test” and “Evan Hospital”:

    vConfig = {
        auth: {
            name: "superuser",
            password: "superuser"
        }
    };

    visualize.config(vConfig);

    //container1 with param
    visualize(function (v) {
        var report = v.report({
            resource: "/organizations/organization_1/Reports/Total_Savings_Report",
            container: "#container1",
            params: { "CustomerName": ["test1"] },
            error: handleError
        });

        $("#button").click(function () {
            report.params({ "CustomerName": ["test2"] }).run();
        });
    });

Link to comment
Share on other sites

  • Replies 1
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

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...