Hi,
I'm aware that this product is in Beta, so I figured I'd point out a bug I found. When attempting to apply parameters to my report, the javascript fails and I get the following response:
It happens in this block here:
Also, and this is a side note, when the page loads, the report is received through the api fine, but it does not actually load the report into the report viewer until I hit the refresh icon. Should I manually call for a refresh? I noticed the sample code provided on the announcement blog post does not require a manual refresh and just properly loads the report on page load.
Thanks
I'm aware that this product is in Beta, so I figured I'd point out a bug I found. When attempting to apply parameters to my report, the javascript fails and I get the following response:
Uncaught TypeError: Object
#<Object> has no method 'applyParameters' parametersArea.js:509
(anonymous
function
) parametersArea.js:509
b.event.dispatch jquery-1.9.1.min.js:3
v.handle
It happens in this block here:
var
$previewButton =
$(
"<button class='k-button trv-parameters-area-preview-button'></button>"
)
.html(
"Preview"
)
.appendTo($footer)
.on(
"click"
,
function
() {
controller.applyParameters();
/*
if ($validator.validate()) {
controller.applyParameters();
}
else {
alert("Invalid parameter values!");
}
*/
});
Also, and this is a side note, when the page loads, the report is received through the api fine, but it does not actually load the report into the report viewer until I hit the refresh icon. Should I manually call for a refresh? I noticed the sample code provided on the announcement blog post does not require a manual refresh and just properly loads the report on page load.
Thanks