Telerik Forums
Reporting Forum
1 answer
97 views
I changed one of my report parameters to allow Null, the data query returns valid data when the parameter is Null, and yet I keep getting an error in Telerik report designer when attempting to do a report preview with the parameter set to Null. I'm using Q1 2014. Is this a bug with the system? I've never had this issue before.
Stef
Telerik team
 answered on 18 Apr 2014
3 answers
420 views
Hi,

I am new to Telerik report viewer. I am trying to pass parameters programmatically to a report viewer report on an asp.net web form. I found the article "Using Report Parameters programmaticall", but I can't see an ".add" function for the control.

ReportViewer1.Report.ReportParameters.


I also can't do: ReportViewer1.Report.ReportParameters["ManagerID"].Value = "123";

Can you please tell me what I am doing wrong.

Regards

Dave
Stef
Telerik team
 answered on 18 Apr 2014
2 answers
91 views
Is it possible to deserialized and run a report created with standalone report designer where the report uses a user function?  Note that I was able to deserialize and run a report created without a user function. I have reports created by end users using the report designer that are using user functions and I am looking for a way to run them using a command line application that I am building.

Thank you, Dan
Stef
Telerik team
 answered on 18 Apr 2014
1 answer
135 views
I am evaluating the Telerik Report Designer at the moment. But I have found very little documentation on using the Standalone Report Designer. In addition, the Standalone Report Designer seems to have very little functionality compared to what I've found in the Demos and other Documentation (which appear to be using Telerik Reporting inside Visual Studio).

Is Telerik Reporting *intended* to be used within a development environment? Is it more scalable/extensible inside VS?

So far, I haven't seen the Standalone Report Designer be able to compare with the flexibility of other Report Designers. I find this difficult to digest since I've read nothing but raves about Telerik.

Any information and points in the right direction would be much appreciated. Thanks!
Peter
Telerik team
 answered on 18 Apr 2014
2 answers
213 views
Hello,
when i export my Reports to XLS, the Column "A" in Excel is mergde with Column "B".
I only have a table on my Report.....

Whats going wrong?
Nasko
Telerik team
 answered on 17 Apr 2014
1 answer
659 views
Hello,

currently evaluating Telerik Reports. I try to use Telerik Reports hosted by the Telerik Reporting REST Services in an existing Web API project bound to the HTML5 viewer.

It works basically, but in my ObjectDataSource that is bound to the report I have to load data async from an existing backend service. The method gets triggered but the result is never awaited. All I get is the following error:

An error has occurred while processing TextBox 'textBox1': The expression contains object 'Start' that is not defined in the current context.

How do I load data asynchronous to bind them to the report? Possible at all?
Stef
Telerik team
 answered on 17 Apr 2014
1 answer
263 views
I recently disabled PDF font embedding on the reports i generate.  Since then, i've had reports from a couple clients that the text doesn't show up in PDFs when viewed with Chrome or IE's native PDF viewers.  I've tried Times New Roman, Arial and Georgia, but none of them work for the client.  Has anyone run into this before?  

Here's what i added to my web.config:

  <Telerik.Reporting>
    <Extensions>
      <Render>
        <Extension name="PDF">
          <Parameters>
            <Parameter name="FontEmbedding" value="None"/>
            <Parameter name="DpiX" value="600"/>
            <Parameter name="DpiY" value="600"/>
          </Parameters>
        </Extension>
      </Render>
    </Extensions>
  </Telerik.Reporting>
Stef
Telerik team
 answered on 16 Apr 2014
5 answers
416 views

Hello,
I started off with the ReportCatalog used in the CSharp.ReportExamples.VS2010 solution from which reports hosted in an asp.net class library are loaded. I went ahead and created a custom parameter UI above my Silverlight reportviewer, but i cannot seem to get the target report (using the Navigate to Report action) to receive the passed parameters from the custom ui. I can navigate to the reports but only the default parameter values set for the reports are used. I have tried using the RenderBegin method but it seems the passed parameters are being ignored. I have read a number of blogs on this, but somehow, things are not working.

How can I wire up the parameters from my Silverlight application to the reports?

Below are snippets of my code:

<my1:ReportViewer Name="rptViewer"
                          â€¦..
                          Report="XXX.ReportsLibrary.ReportCatalog, XXX.ReportsLibrary, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"
                          ReportServiceUri="../Services/ReportService.svc"                                      RenderBegin="rptViewer_RenderBegin"
                          Loaded="rptViewer_Loaded" />

In the code behind of the page hosting the reportviewer, I have:

void rptViewer_RenderBegin(object sender, RenderBeginEventArgs args)
 { 
args.ParameterValues.Clear(); 
args.ParameterValues["dateStart"] = rdpStart.SelectedDate; 
args.ParameterValues["dateEnd"] = rdpEnd.SelectedDate; 
((ReportViewerModel)(rptViewer.DataContext)).ApplyReportParametersCommand.Execute(null);
 
}

One thing I noticed is that the sender is ALWAYS the ReportCatalog. I was expecting that after navigating to ReportX the Sender would be ReportX. So is it that I am trying to apply parameters to the wrong report?

Please help!!!

My last option would be to abandon the idea of custom parameters UI.

Thanks

Stef
Telerik team
 answered on 16 Apr 2014
6 answers
366 views

I am working on an ASPX page where the user enters some information. When the user click the save button I want to save the entered data then call Telerik’s report passing to it the record_id of the new saved data. I cannot find any information on how to pass parameter to a report. Could someone help me on this issue?

 

Thanks

Maher

Stef
Telerik team
 answered on 16 Apr 2014
5 answers
167 views
We're trying to create a new report inside an ASP.NET page using OpenAccess as a datasource and, althought the page works without problems, when we click on 'Preview' tab on Visual Studio, it alwways throws the next exception.

Telerik reporting Ver: 2013 Q1 (Trial)
OpenAccess Ver: 2013 Q1
Database: SQL Compact Edition 4

An error has occurred while processing Report 'InfFactura': An error occurred while invoking data retrieval method. Try restarting Visual Studio. ------------- InnerException ------------- Se produjo una excepción en el destino de la invocación. ------------- InnerException ------------- The metadata for field '_clientefacturas' of class 'Facturacion.BdFacturacion.Cliente' cannot be initialized: Field '_cliente' of class 'Facturacion.BdFacturacion.Clientefactura' is not a reference, collection or array; was used to define field '_clientefacturas' of class 'Facturacion.BdFacturacion.Cliente'. --> Bemasoft/namespace[Facturacion.BdFacturacion]/class[Cliente]/field[_clientefacturas]/collection/inverse="_cliente" ------------- InnerException ------------- Field '_cliente' of class 'Facturacion.BdFacturacion.Clientefactura' is not a reference, collection or array; was used to define field '_clientefacturas' of class 'Facturacion.BdFacturacion.Cliente'. --> Bemasoft/namespace[Facturacion.BdFacturacion]/class[Cliente]/field[_clientefacturas]/collection/inverse="_cliente"

Any idea?
Stef
Telerik team
 answered on 16 Apr 2014
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
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?