Telerik Forums
Reporting Forum
1 answer
94 views
Hi,
We are developing a report consisting of some tables and charts, and were wondering if it's possible to display two stacked bard charts side by side. eg. Display and compare sales and profit for different categories of two companies.

Is there a stackgroup option available as there is for the silverlight charts?
If not how would we develop the reports to show the charts that we require?

I have been searching on the forum and have read that it's not supported but they are old posts from last year and i'm hoping that it has changed.
Steve
Telerik team
 answered on 07 Nov 2011
5 answers
396 views
Hi

I want source code for adding  and showing two tables in one Report Book.

Thanks
Sandeep Trivedi
Steve
Telerik team
 answered on 07 Nov 2011
3 answers
1.1K+ views
I am new to Telerik Reports  and have created a WCF service with parameters and would like to pass values to it. Below is the URL -

http://serverName/ReportService.svc/resources/export?format=PDF&report=MyReports.PurchaseReport,MyReports&parameterValues={"fileID":81}

This works if I have the actual report "fileID" param set to a default value like 82. After making the call the Report uses the default 82 value and not "81"?

Do I need to add code inside the Report class? even though my DataSource param is bound to my Report Param?

Is there an example of this anywhere? I have only found the Telerik example w/out parameters. 
IvanDT
Telerik team
 answered on 04 Nov 2011
1 answer
97 views
Using the Web Report Viewer how can one redirect the client to an error page when there is an error processing the report?

In order to help stem performance issues from users running reports that result in to large of a data set (20,000+ records).  We throw an exception in the reports NeedDatasource event.   However since reports aren't run in the context of the page (their run from the report handler) the exception doesn't bubble up to a level that we can redirect at the server level.

Is there a way of handling the error on the client and redirecting.

Using the message value of the exception I can display a "useful" error message to the user since the report view displays the Exception.Error message.   However i'd prefer to redirect them to a more meaningful page.

If not is there a way to localize the "An error has occurred while processing Report"   Text? 
Peter
Telerik team
 answered on 04 Nov 2011
3 answers
441 views
Note: This thread has been moved from TeamPulse General Discussion forum to Telerik Reporting forum.

hi.
this is jay.i have created a telerik report with multiple columns, when i execute direct this report its showing multiple columns but when i used in subreport its not display multiple columns.Please help me.its urgent for me.

Thanks and regards
Vats Jay
IvanDT
Telerik team
 answered on 04 Nov 2011
1 answer
641 views
Hi,

My Silverlight Reportviewer control when clicking the SAVE menu at runtime, only shows a few of the inbuilt extensions available.
Where did all the INBUILT ones go?   

From the help...
By default Telerik Reporting outputs reports in the following formats: Image, PDF, HTML, MHTML, Excel 97-2003, XLSX, PPTX, DOCX, RTF and CSV.

I am missing the OFFICE extensions.
When I put this in the <configSections> as described by the help - i get an error.
<section name="Telerik.Reporting"
             type="Telerik.Reporting.Processing.Config.ReportingConfigurationSection, Version=5.1.11.928, Culture=neutral, PublicKeyToken=a9d7983dfcc261be"
             allowLocation="true"
             allowDefinition="Everywhere"/>

An error occurred creating the configuration section handler for Telerik.Reporting: The given assembly name or codebase was invalid. (Exception from HRESULT: 0x80131047) (C:\...\...\web.config line 5)
The given assembly name or codebase was invalid. (Exception from HRESULT: 0x80131047)

The assembly is Referenced properly and the fully qualified assembly name was taken from Reflector so it's 100% correct. Without this section - everything works fine.
Is this not the correct documentation?

I can't find anything more on this.
If these are not in fact in-built then does someone have an example of a web.config file with the correct values for all the inbuilt renders?

Thanks
Simon



Steve
Telerik team
 answered on 04 Nov 2011
2 answers
258 views
I have a report that shows me a customer's ID, their bank, and a certain fee. When I run the report it shows the correct data in the correct format but the report repeats itself. I should only be getting back one page but I am getting back sometimes 150 pages depending on which customer parameter I choose to run the report on. Here is a simple example of the data I should be getting back.

CustomerID: 123456     Bank: BOA    Fee: $300
CustomerID: 554433     Bank: Wells Fargo     Fee: $324
CustomerID: 225676     Bank: FCU    Fee: $400

However, when I run the report, I am getting back multiple pages containing the same data, like this:

CustomerID: 123456     Bank: BOA    Fee: $300
CustomerID: 554433     Bank: Wells Fargo     Fee: $324
CustomerID: 225676     Bank: FCU    Fee: $400

CustomerID: 123456     Bank: BOA    Fee: $300
CustomerID: 554433     Bank: Wells Fargo     Fee: $324
CustomerID: 225676     Bank: FCU    Fee: $400

CustomerID: 123456     Bank: BOA    Fee: $300
CustomerID: 554433     Bank: Wells Fargo     Fee: $324
CustomerID: 225676     Bank: FCU    Fee: $400

CustomerID: 123456     Bank: BOA    Fee: $300
CustomerID: 554433     Bank: Wells Fargo     Fee: $324
CustomerID: 225676     Bank: FCU    Fee: $400



Any ideas?
pmourfield
Top achievements
Rank 1
 answered on 04 Nov 2011
1 answer
106 views
I am trying to use the htmltextbox on a report. However, when I add an htmltextbox to the report I see the time it takes to display the report on the screen go from 3 seconds to 70 seconds. I see this time delay even when I don't tie any data to the htmltextbox and just allow it to display the default text. I have tried this with a blank report (table of about 100 records) which only has an htmltextbox on it and the speed to render is too slow to ever use this type of item.
I would appreciate any suggestions about how to resolve this issue.
Steve
Telerik team
 answered on 04 Nov 2011
1 answer
207 views

Hello,

I am currently evaluating your reporting product...  I am attempting to connect to an EF 4.1 Object Context...  I created a partial class with a new method that returns a list of a customized class for the report like so:


namespace Telerik.Reporting.Examples.CSharp
{
    public partial class WOCatalogEntities1
    {
        
        public List<ReportData> GetWorkOrdersForReport()
        {
            
            this.ContextOptions.LazyLoadingEnabled = true;
            var list = this.WorkOrderHeaders.Where(e => e.WOStatusType.is_open_status).Select(e => new ReportData
            {
                WONumber = e.wo_no,
                LastEdited = e.server_updt,
                Status = e.WOStatusType.status_desc,
                Task = e.task,
                Tech = e.WOPersonnel.lname,
                VendorNumber = e.pp_vendorcode,
                WOType = e.WOTaskType.TaskType,
                WOUnit = e.WORentalUnit.unit
            });
 
            return list.Take(50).ToList();;
            
        }
 
 
    }
 
    public class ReportData
    {
 
        public int WONumber { getset; }
        public string WOUnit { getset; }
        public string Tech { getset; }
        public string Status { getset; }
        public string VendorNumber { getset; }
        public string Task { getset; }
        public string WOType { getset; }
        public DateTime? LastEdited { getset; }
 
    }
 
 
}


the partial class is in the same assembly AND the same namespace as the Entity Model of the same name...  but I get the error that telerik cannot find the method ???



Telerik.Reporting.Processing.Data.ObjectDataSourceException: Method GetWorkOrdersForReport() not found.
   at Telerik.Reporting.Processing.Data.ObjectQueryProvider.GetSelectMethod(Type type, String name, IDictionary`2 parameters)
   at Telerik.Reporting.Processing.Data.ObjectQueryProvider.ResolveDataSourcePropertiesFromType()
   at Telerik.Reporting.Processing.Data.ObjectQueryProvider.ResolveDataSourceProperties()
   at Telerik.Reporting.Processing.Data.ObjectSchema.FillSchema(ObjectQueryProvider queryProvider)
   at Telerik.Reporting.Processing.Data.ObjectSchema..ctor(ObjectQueryProvider queryProvider)
   at Telerik.Reporting.Processing.Data.ObjectQueryProvider.CreateSchema()
   at Telerik.Reporting.Processing.Data.MultidimensionalQueryProvider.GetSchema()
   at Telerik.Reporting.Design.DataSourceService.GetCurrentDataSourceSchema(Boolean throwOnError)
   at Telerik.Reporting.Design.DataExplorerControl.RefreshDataSource()



Thanks
Greg


Peter
Telerik team
 answered on 04 Nov 2011
3 answers
171 views
I have reports that I want to display without paging so that they expand down the page without having to use the viewer's scrollbars.  Is there a way to do this?  I've got the non-paging reports working by using the GroupKeepTogether property, but I can't seem to set the viewer to not have a scrollbar and to render its full height.  Is this a limitation of using an iframe to render the report?
Steve
Telerik team
 answered on 04 Nov 2011
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?