Hi
I'm using HTML5 report viewer.
According to the following post I should be able to retrieve the current report parameters using this code:
var
viewer = $(
"#reportViewer1"
).data(
"telerik_ReportViewer"
);
var
currentParams = viewer.reportSource().parameters;
This method seems to return the last submitted values parameters only and not the 'current' values. For example the default start and end date parameter values in my report depend on another report-type parameter. This works well displaying the required default values in the parameter window. However the code above doesn't return these current values unless the values are actually submitted with "Preview".
Can you suggest a work around to retrieve the current displayed values of each parameter even before they are submitted to Telerik reporting. I already have custom editors and I could attach my own code to monitor the current values - but is there a better recommended way?
Thanks in advance.
Ian