Telerik Forums
Reporting Forum
1 answer
166 views
I have tons of reports I created in Visual Studio using Telerik Reporting.  How do I import these existing Telerik reports into the Telerik Report Designer?
KS
Top achievements
Rank 1
 answered on 27 Feb 2014
3 answers
68 views
I built a telerik bar chart, it displays properly when I don't use any IN parameters, however when I call at least one IN parameter, then the procedure gets called twice. Once with the valid parameter values and the second time with null values. The breakpoint hits all lines only once. I am not sure why it is calling the database procedure twice (only with IN parameters).

Additional information: C#, Telerik Q3 Reporting in Visual Studio 2012, SqlDataSource, The report is called from the DLL report library.

(Also, I tried with one string IN parameter, and with two: string and int64. I hardcoded the parameters and it still did not fix the issue)

What may cause this additional call?
KS
Top achievements
Rank 1
 answered on 27 Feb 2014
2 answers
61 views
I have an aspx page with dropdown selection and a space for report. (Report is loaded from the reference library.) When user selects the item and clicks the "Generate" button, the  new page opens up with the same dropdown and populated report.  It should open open below the dropdown in the designated place. (Every next time user clicks on the second window, the results will repopulate in that second window, without opening the third one).
How can I embed the report so that it always reloads in the first window?
Joan
Top achievements
Rank 1
 answered on 27 Feb 2014
1 answer
91 views
Apologies in advance if this has been asked and answered previously.

I am looking to integrate the Reporting tools into a project that I am currently working on which is using the Kendo UI framework (MVC)

This project is using the open access (data model (still getting to grips with all this EF based tech) ) and I was wondering what the best way to implementing the reports engine into my product.

I am moving away from an old SSRS 2005 instance and want to provide a more "dashboard" driven solution with lots of whizzy graphs etc. But I will still need to print out reports as part of the solution which is where the reporting tools fit (I think).

Rather than having a plethora of report definition files (like we do with SSRS over 100 at last count) is there a way I can just give a report a data source and render the information on the fly?

I have tried to follow the examples that Carey Payette did some time ago but I am just lost with how to implement the solution in a way that I need to rather than having lots of report files being created and maintained by me.

If some kind soul could point me in the right direction that would be great.


Stef
Telerik team
 answered on 27 Feb 2014
1 answer
186 views
Hello, 

I'm using HtmlTextBox with 2 levels of Unordered Lists, but they're all showing on the same indent level.. meaning the bullet points on the inner UL are different, but indentation is flat, so impossible to tell they're sub-bullets. 

same thing is happening with nested Ordered List. 


my html is structured ad: 

<ul>
   <li>..</li>
   <li>..</li>
   <ul>
      <li>...</li>
      <li>...</li>
    </ul>
</ul>
KS
Top achievements
Rank 1
 answered on 27 Feb 2014
2 answers
182 views
I am a pure beginner in csharp.

In my report, I have to group the results of an sql query data and calculate the average min., max. and median (I have three grouping categories: category I, II and III). For the average, min and max I can use the AVE-, MIN- and MAX-functions.
To calculate the median, I found the following c#-script:

public static double Median(this IEnumerable<double> list)
        {

            List<double> orderedList = list
                .OrderBy(numbers => numbers)
                .ToList();

            int listSize = orderedList.Count;
            double result;

            if (listSize % 2 == 0) // even
            {
                int midIndex = listSize / 2;
                result = ((orderedList.ElementAt(midIndex - 1) +
                           orderedList.ElementAt(midIndex)) / 2);
            }
            else // odd
            {
                double element = (double)listSize / 2;
                element = Math.Round(element, MidpointRounding.AwayFromZero);

                result = orderedList.ElementAt((int)(element - 1));
            }

            return result;
        }  


As I am an absolute c#-beginner, I don't know how to pass the sql-result of each group to the median-function... :-( I would be very thankful, if someone could provide me any hint.


IvanY
Telerik team
 answered on 27 Feb 2014
7 answers
183 views
I need help getting started with Telerik Reporting. I‘ve read the documentation and I understand
almost everything except how to get started in Visual Studio. I would like to use the VS designer, and
integrate the report into my WPF application, using VS 2013. I understand I should be able to create
classes inside a reporting project, but how do I start this project? I tried creating a Telerik Reporting
application, but it creates a WinForms application that doesn’t seem to do what
I need.

There is documentation on the Integrated Reports designer in
VS, but the very first line of the documentation says “Double click on the
Report.cs file” – where is this file, and how is it created??? It also mentions to click on the Telerik Menu
-> Reporting, but all I ever see is Upgrade Wizard. The documentation says other options will
appear when the designer has focus, but How do I find the Designer??? This is very frustrating when you can’t get
past square one.

I am using Telerik UI for WPF version 2013.2.724.40, and Reports version 7.1.13.802. I’ve successfully added
references to my project, and binding redirects to allow the libs to load. I’ve also added a report viewer control to my
WPF UI. What I need help with is starting the designer in Visual studio, and how to create the report classes.

Thanks,

Randy

Randy
Top achievements
Rank 1
 answered on 26 Feb 2014
2 answers
221 views
Hi Folks - I'm having problems with missing toolbox items.  Ive read over this article: Telerik Reporting Toolbox items are missing and done all the stuff but I still dont get any tools when im in report designer.  I'm using both Q1 2011 and Q3 2013 versions. (not all apps have been converted yet).  is that a problem?  when i R-Click the toolbox and do Show-All then I can see the sections but the items are all greyed out?  Im running Win64.  what does it mean when i can only see items greyed out in Show-All mode?
kellyroberts
Top achievements
Rank 1
 answered on 26 Feb 2014
1 answer
349 views
I have a vb.net application with an asp page that has a report viewer control on it. The problem is that when publishing the application, the icons does not show up as in the attached image.

The webserver is running Windows 2008 R2 with IIS7

web.config
    <compilation debug="true" explicit="true" strict="false" targetFramework="4.0">
     <assemblies>
       <add assembly="Telerik.Web.Design, Version=2013.3.1015.40, Culture=neutral, PublicKeyToken=121FAE78165BA3D4" />
       <add assembly="Telerik.Reporting.Service, Version=7.2.13.1016, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" />
       <add assembly="Telerik.Reporting, Version=7.2.13.1016, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" />
       <add assembly="Telerik.ReportViewer.WebForms, Version=7.2.13.1016, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" />
       <add assembly="Telerik.ReportViewer.WinForms, Version=7.2.13.1016, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" />
       <add assembly="Telerik.ReportViewer.Wpf, Version=7.2.13.1016, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" />
     </assemblies>
   </compilation>
  
   <httpHandlers>
     <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
     <add path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" validate="false" />
     <add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" validate="false" />
     <add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" />
     <add path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" validate="false" />
     <add type="Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=7.2.13.1016, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" path="Telerik.ReportViewer.axd" verb="*" validate="true" />
   </httpHandlers>
  
<system.webServer>
   <caching enabled="true" enableKernelCache="true">
     <profiles>
       <add extension=".png" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" location="Any" />
       <add extension=".jpg" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" location="Any" />
       <add extension=".gif" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" location="Any" />
       <add extension=".axd" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" location="Any" />
       <add extension=".css" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" location="Any" />
     </profiles>
   </caching>
   <validation validateIntegratedModeConfiguration="false" />
   <handlers>
     <add name="Telerik.ReportViewer.axd_*" path="Telerik.ReportViewer.axd" verb="*" type="Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=x.x.x.x, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" preCondition="integratedMode"   />
   </handlers>
 </system.webServer>

report.asp
<%@ Register Assembly="Telerik.ReportViewer.WebForms, Version=7.2.13.1016, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" Namespace="Telerik.ReportViewer.WebForms" TagPrefix="telerik" %>
 
<asp:Content ID="Content1" ContentPlaceHolderID="Navigation" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="RightPane" Runat="Server">
     <div style="text-align:left; vertical-align:Top; padding-left:10px; padding-right:10px; padding-top:10px; height:650px;">
        <table style="width: 100%; border-style: none; border-spacing: 0; padding: 0;" class="ContentTable">
            <tr>
                <td style="text-align: center;" class="ContentTable">           
                    <telerik:ReportViewer ID="ReportViewer1" runat="server" Width="100%" Height="600px">
                        <typereportsource typename="CirusReports.Report1, CirusReports, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"></typereportsource>
                    </telerik:ReportViewer>
                </td>
            </tr>
        </table>
    </div>
</asp:Content>



juststarting
Top achievements
Rank 2
 answered on 26 Feb 2014
1 answer
148 views
Hi

I am creating the Telerik report we need to create a report dynamically ,so i create one button ,
on button click the call come in aspx page and i also using .ascx(user control).on ascx page i put the telerik Report viewer
so report generating on .ascx(user control) that .ascx page display dynamically on " div "  on aspx page. but the problem
report design is display but data is not display .

so please help me.

Regard,
Hitesh
KS
Top achievements
Rank 1
 answered on 25 Feb 2014
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?