Telerik Forums
Reporting Forum
2 answers
104 views
Is it possible to get an image from the SSRS report server via url and set it to the value of a picture box in a telerik report?
Jen
Top achievements
Rank 1
 answered on 01 May 2013
1 answer
50 views
Hello all!

I currently have a telerik report that I render in PDF that has two pictureboxes with set sizes. One picturebox's sizing property is set to stretch, while the other is set to ScaleProportional. On my local development environment, this report is rendered and displayed correctly. The pictureboxes behave as expected. When I publish to my server, the pictureboxes are distorted in size and completely throw off my report layout. Has anyone experienced this before, and what are some possible issues that I can look into? Thanks in advance!
Adam
Top achievements
Rank 1
 answered on 01 May 2013
1 answer
138 views
Hi I need to export all the data from the grid
I am using toggle visibility  , so when i export the data i am getting the data that is only opened .But I need to export the whole data . Please suggest me

Thanks
Peter
Telerik team
 answered on 01 May 2013
1 answer
164 views
Hello
I'm not talking about 'How to: Create a Multi-Column Report'
For example I have 15 columns, then I want to show first 8 at one page, other 7 on another page

And when I add textBoxes on Telerik.Reporting.DetailSection, data on my textBoxes correctly move on page 1 and page 2, but column names are in Telerik.Reporting.PageHeaderSection and won't to move on next page

How can I fix it?
Q1 2013 build 7.0.13.220
Hans
Top achievements
Rank 1
 answered on 01 May 2013
1 answer
55 views
I have an existing report that needs to have 2 columns where each cell in the column be underlined, where would I find an example on how to do that, or what avenue can I explore to learn how to do that?  Thanks
Peter
Telerik team
 answered on 30 Apr 2013
4 answers
462 views
Hi,

We are facing issues with report viewer printing. I tried telerik's online demo on my machine the following browsers.
Chrome, FireFox, Safari, IE 10. all working great except Safari.

I have downloaded and upgraded my solution with Telerik_Reporting_Q1_2013_build_7.0.13.220 however report viewer print is not working. It neither open print dialog nor download the PDF on print click for FireFox, Safari, IE 10 where as works great with Chrome.

as the next step I have download CSharp report examples "Telerik_Reporting_Q1_2013_build_7.0.13.412_TRIAL" one of your internal build. When i run the solution result is same, print is not working. It neither open print dialog nor download the PDF on print click for FireFox, Safari, IE 10 where as works great with Chrome.

I have Adobe reader version 11 installed on my machine.

Please advice.

Thanks,
Anuj


 
Stef
Telerik team
 answered on 30 Apr 2013
1 answer
212 views
Hi team,
I want to create a navigate to URI by coding and that URI contain expression.
basically there is a textbox and i want to add a hyper link on it but when its value equal 0 then i don't want to enable hyper link feature.

this is the URI  :

="Reports/AttendeesProfiles.aspx?QRCodeID=" + Fields.QRCodeID+ "&QRCodeTypeDesc=" +  Trim(ReportItem.Parent.DataObject.QRCodeTypeDesc) + "&QRCodeName=" + Trim(Fields.QRCodeName)  + "&IsQRCodesType=False"

regards,
Mohammed
IvanY
Telerik team
 answered on 30 Apr 2013
2 answers
267 views
I have created a report and everything that I have done works, except the checkboxes. 

In my picture I have highlighted the data that it gets when the report runs. The checkbox is set to the exact same expression as the test field I am using which has the red box around it. The checkbox should be checking with the value that its getting.

Why is the checkbox not checking? This seems to be a pretty simple exercise.

Thanks,
Charlie Hawk
Sandra
Top achievements
Rank 1
 answered on 29 Apr 2013
2 answers
121 views
I am wondering that there is a way to have the details section repeat based on a data value.

The exact circumstances are these:
I have a table of items ordered (Order_Details) with the columns (OrderDetailID, ProductID, Quantity, etc)
I have a second table with the product information (Products) with columns (ProductID, ProductName, Barcode, etc.)

What i am trying to do is create a report with the barcodes for all the items sold.  
The catch is, i need the details area of the report to print once for each Quantity rather than once for each record.
E.g. if i have product #1 quantity 4, the barcode for product #1 should print 4 times, rather than once.

Is there a setting or option i'm missing, or am i going to have to do SQL magic for this one?

Thanks!


H
Top achievements
Rank 1
 answered on 29 Apr 2013
1 answer
129 views
Hi, recently started using the free trial of Telerik Reporting in my MVC project. So what I do is, on the client side, when a button is pressed, it sends down an ID to the controller which calls GetReport to get data matching the ID, and then return a report back to the client. However, I keep getting this error <ExceptionMessage>Invalid value of report parameter 'id'.</ExceptionMessage>.

What am I doing wrong? I think I'm doing this correctly going by the resources: http://www.telerik.com/help/reporting/entitydatasource-connecting-to-entity-data-model.html

NB: int _stuffId is never null, it does have a value when I debugged the app.

// ReportRepo.cs
 
public Report GetReportData(int _id)
{
    return m_context.Stuff.SingleOrDefault(c => c.StuffId == _id);
}
 
// controller
public HttpResponseMessage GetReport(int _stuffId)
{
    try
    {
        EntityDataSource entityDataSource = new EntityDataSource();
        entityDataSource.ObjectContext = typeof(ReportRepo);
        entityDataSource.ObjectContextMember = "GetReportData";
        entityDataSource.Parameters.Add("_id", typeof(int), _stuffId);
 
        Report1 report1 = new Report1();
        report1.DataSource = entityDataSource;
 
        ReportProcessor reportProcessor = new ReportProcessor();
        InstanceReportSource instanceReportSource = new InstanceReportSource();
        instanceReportSource.ReportDocument = report1;
        RenderingResult result = reportProcessor.RenderReport("PDF", instanceReportSource, null);
 
        HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK);
        var stream = new MemoryStream(result.DocumentBytes);
        response.Content = new StreamContent(stream);
        response.Content.Headers.ContentType = new MediaTypeHeaderValue("application/octet-stream");
        response.Content.Headers.ContentDisposition = new System.Net.Http.Headers.ContentDispositionHeaderValue("attachment");
        response.Content.Headers.ContentDisposition.FileName = result.DocumentName + "." + result.Extension;
 
        return response;
    }
}
Ken
Top achievements
Rank 1
 answered on 29 Apr 2013
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?