Hello:
I have a report with user generated content that contains paragraphs. If a paragraph cannot fit on a specific page, I would like the entire paragraph to flow onto the next page. Similar to Words "Keep lines together" feature. Is that possible?
Thanks
-Steve
Hello,
I have a picture box (company logo) in my report and it works fine if I export the report to PDF, but if I export to Word or Excel the picture box is not there.
In Excel I have only an empty cell.
Does anybody have an idea why?
Thanks.
Regards,
Diego


Hello,
I am using Telerik Reporting R3 2016 in my project. The Reports that i have created are getting rendered perfectly fine without any issue in IE and FireFox but when i try to run the same reports in Chrome it doesn't work. I didn't get any error, it shows page with really thing report page and page numbers also, please check attached screenshot. the same reports works perfectly fine in IE and Firefox.
Regards,
Savan
We are facing an issue with our Telerik report in Chrome browser. It was perfectly fine until now, however we can access the report with other browsers like Firefox.
It seems that there is an update in JQuery which is causing problem, there is a warning message we are getting in developer console of Chrome "jquery-3.1.1.min.js:4 Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/"
Telerik Report is loading fully but applying a CSS class trv-nav-input in a Chrome Browser with a height 99% to the report header hence covering the whole report. As soon as we fix the height of header, we can see the report.
The following is the report calling from Javascript
reportViewer.reportSource({
report: ReportSheet,
parameters: {
"Parameter1": departmentId,
"Parameter2": employeeid,
"Parameter3": locationid,
},
});
Your immediate help will be greatly appreciated.

Hi guys I explain you my problem: I have defined the template of a report thanks to the StandLone Report Designer, in this report I have defined two parameters (by the designer). I want to pass one of this parameters from outside of the viewer and one by selecting it inside the viewer.
How can I do that?
I have added in my html page this function
$('#Nome').change(function () {
var viewer = $("#reportViewer1").data("telerik_ReportViewer");
viewer.reportSource({
report: viewer.reportSource().report,
parameters: { Nome:$(this).val() }
});
});
The parameter that I want to change is called "Nome", but it doesn't do anything! How can I link the textbox (its id is "Nome") created outside the viewer (where I will write the parameter) to the parameter "Nome" defined into the designer?
Thank you for helping

Hi there,
I'm using 2 datasources in one report. The first datasource gets the main element and the second the childeren of that element.
Because I couldn't get a table of a list in that datasource I want to get it trough a second call.
If I set the parameter for that datasource as = Field.ItemId it doens't pass along the value of that field to the second DataSource.
How can I do this?

I have an invoice with multiple pages, I want to display the invoice summary an the bottom of the last page (or the footer of the last page) only.
I tried to set the summary in the body, but sometimes it shows in the middle of the page depending on the data available.
I am using C# language and creating Windows Application
How could i do it?
thanks.