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
I am looking for different options to use report viewer in Reactjs Component. Please help if somebody has implemented the same.
My report is used crosstab wizard.How can I fix this UI inconvenience? My problem is in the following attachment file.
Thank !!!
HI,
I'm facing an issue on Telerik reporting while rendering into word(DOCX). My generated docx file table 1st cell name has been disappearing ...Not only one table. Every table 1st cell Name has disappered.. Why?
I don't know? can some one help
Hi,
We are trying to use HTML5 Report viewer in Angular 2 and Typescript. We are able to render report with hard coded parameters. Now we need to dynamically pass parameters both key and value.
ngAfterViewInit() {
var reportViewer = jQuery("#reportViewer1");
if (reportViewer) {
telerik_ReportViewer({
serviceUrl: this.baseUrl,
templateUrl: this.templateUrl,
reportSource: {
report: "test.testreport,report",
parameters: {
"p1": 1,
"p2": 2,
"p3": "head"
}
}
});
}
}
Instead of hard coded p1,p2, p3 we want to read key value pair from array and assign both key and value to parameters.
We are unable to get how to assign parameters dynamically. Please guide us. We are not able to find a sample which does this.
I am getting the following message
"Can not start the wizard. Consider restarting Visual Studio. DesignerHost is null."
I have restarted over and over again, including rebooting my machine.
Any help
Thanks.
Hello, we are (ab)using reports to design printable documents, and we're having an issue with printing multiple reports on a page.
Normally, printing works fine, however when a certain field is long enough to create a new line, the size of the item gets increased, causing report items to get bumped to a new page. See attached image for the report item, which fits 6 to a 8.5x11 page in landscape mode.
What I'd like to happen is that items near marker #2 expand to take up the space up till the grid at marker #1, whereas right now any new line in the items at marker #2 will simply cause the entire report to be longer. I've attached a second image showing the actual printed result. If the third item weren't a line longer, there would be 3 more items on that page.