Telerik Forums
Reporting Forum
0 answers
55 views

Hi, I need help for my problem on telerik html 5 to render big record, I have an idea to configure it via javascript to render only selected page, then every time we navigate to another page, renderer will render selected data only. Can I configure that via javascript or from the backend? Or, there is any other way to solve my problem?

I also have other problem with big records to be exported.

Thank You.

Ria
Top achievements
Rank 1
 asked on 15 Feb 2018
0 answers
96 views

We have built a report that we send to a printer with a staple option.

We would like to have the report staple on group change. 

Example would be a invoice report with 5 pages. We run that report for 5 invoices at 5 pages each for a total of 25 pages.  The desired outcome would be to staple it in bundles of 5.

Can we do this in the Telerik Standalone Report Designer?

Brian
Top achievements
Rank 1
 asked on 14 Feb 2018
6 answers
1.4K+ views

So I have several well established applications for which I have not made any recent changes to.  All of these applications have reporting functionality built in and Im displaying the reports in a report viewer.  All standard stuff nothing exceptional in the setup.  Up until about 3 weeks ago you could, from the ReportViewer print a report in Chrome without issue.  Now.....every thing I print is blank.  I can open these same reports, exported as PDF's, in Edge, IE or Adobe Reader and print them without any problems at all.

Im going to include some code for one of the basic reports but as you can see...nothing special.  I learned that Chrome has made some changes to the the PDF plugin support but I dont really understand how this affecting the printing of a report from the ReportViewer.  My test report only has a label field on it for simplicity's sake.  Im running the latest versions of the WebUI and the Reporting software.  The report looks normal in print preview and even if I select Print using system dialog the results are the same.

Again these arent new reports and no code changes have been made to them in months.  My guess is Chrome has done something or perhaps there is a new setting im not aware of in either Chrome or the ReportViewer.  Ive also tried the "Keep Together=false" setting to no avail.

 

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Test.aspx.cs" Inherits="Test" %>
<%@ Register TagPrefix="telerik" Assembly="Telerik.ReportViewer.WebForms" Namespace="Telerik.ReportViewer.WebForms" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Test</title>
    <link href="//fonts.googleapis.com/css?family=Arial:400,300,600,700|Raleway:400,300,600,700|Archivo+Narrow:400,700" rel="stylesheet" />
    <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet" />
    <link href="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css" rel="stylesheet" />
    <link href="../styles/site.css" rel="stylesheet" />
</head>
<body>
    <form id="form1" runat="server">
        <div>
            <telerik:ReportViewer ID="ReportViewer1" runat="server" ReportSource-IdentifierType="TypeReportSource" Width="850" Height="1000"></telerik:ReportViewer>
        </div>
    </form>
</body>
</html>

Code behind:

 

using System;
using Telerik.Reporting;

    public partial class Test: System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            dynamic report1 = Activator.CreateInstance(System.Reflection.Assembly.Load("EMS").GetType("TestReport"), false);
            InstanceReportSource rptSource = new InstanceReportSource();
            rptSource.ReportDocument = report1;
            this.ReportViewer1.ReportSource = rptSource;
        }
    }

I dont mind telling users export only then print using Adobe Reader or another browser but I really liked being able to print from the ReportViewer.

Todor
Telerik team
 answered on 12 Feb 2018
0 answers
94 views

hello sir,

 

i want know that how can i bind a list to report programally and show in the report viewer without help of dataset and report wizard.

Rohit
Top achievements
Rank 1
 asked on 12 Feb 2018
3 answers
230 views

Hi there,

Hope everybody will be doing fine. I am stuck at a very unclear problem. I am trying to display the data in a table for a specific employee. The problem is that table is showing data exactly for how many times it is in database but the query is written in that way that a record will be repeated because of JOINS I guess. I want to show the row single time for an employee but it is repeating.
My structure is like this.

Employee Name    Addition                     Deduction
Ahmad Ali              Bonus                        Leave
Ahmad Ali              Timely Submission    Leave

 

I want it to be like this


Employee Name    Addition                     Deduction
Ahmad Ali              Bonus                        Leave
Ahmad Ali              Timely Submission    

 

I am using 2 tables in the detail section one for addition and one for deduction because these are two separate tables in the database as well.
Hoping to get a prompt reply. This is urgent please help.

Regards, Asim

 

 

 

 

 

 

 

 

 

Muhammad
Top achievements
Rank 1
 answered on 12 Feb 2018
3 answers
1.3K+ views

Hi 

Am new to telerik report. I just check the sample reports where the data source is fixed. I want like through Web API, I can call the database SQL procedure and what the output comes from store procedure will be the data source for the Telerik Report. Is it possible? or how can we achieve the same?

Another question, will telerik reports will run on azure web service without Virtual Machine? Can we take print out or download PDF from Azure web service? 

Thanks 

Katia
Telerik team
 answered on 09 Feb 2018
5 answers
1.3K+ views
Hello all. I am trying to learn how to set the value of a picturebox based on the value of a particular field. My situation is that I have a report that combines employees from various companies and so I need to set the correct company logo for each employee. I am very new to telerik and am not so well versed in c# so I am hoping someone who speaks my language (vb.net) will point me in the right direction. So far I have discovered that I have no idea how to reference a field value in my code nor do I know how to use that value, if I knew how to get it, to then populate my picturebox. Thanks to you all for any and all help in this matter.

Malcolm X
Muhammad
Top achievements
Rank 1
 answered on 09 Feb 2018
0 answers
160 views
I have an image that is stored in field whose datatype is Varbinary. When I try to display the image on the screen it give me Generic GDI+ errror.
Any idea how to resolve this ?


Regards,
Muhammad
Top achievements
Rank 1
 asked on 09 Feb 2018
4 answers
967 views
Hi there

I'm working on a report in which I have to take Sum of a field, I'm using this expression right now. =Sum(Fields.ReceivedAmount).
This expression works fine in Standalone reporting tool but when I apply the same thing over Reporting in Visual Studio all I get is the result shown in the attached picture. 
Can somebody help me out please if there is something out of the box needs to be done in here ?

Thank you
Muhammad
Top achievements
Rank 1
 answered on 09 Feb 2018
3 answers
1.1K+ views

I am using: Visual Studio Professional 2017 version 15.5.6

I am using : Telerik Reporting version 12.0.18.125

I am trying to create a report in visual studio using the visual studio report designer. Everything seems to be working great except when I open the data source tab and try to add an Object data source. I go through the whole wizard but after I complete the final step and click "finish", nothing happens. The data source is not added, no error dialog appears, nothing happens. 

Katia
Telerik team
 answered on 08 Feb 2018
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?