Hello everyone !
I'm currently using visualize.js to build a custom web application and I am using report events to trigger other functions :
report = v.report({
...
events: {
beforeRender: function (el) {
var_A = func_A():
},
reportCompleted: function (status) {
if (status == "ready") {
var_B = func_B();
} else {
var_C = func_C();
}
},
},
I found a list off event in this page (https://community.jaspersoft.com/wiki/visualizejs-complete-list-built-ev...), it's very usefull !
But I don't know if there is a similar list for dashboard and adhoc view events, do you know where I can find it ?
Thanks in advance for yor help !