Telerik Forums
Reporting Forum
6 answers
286 views
Hello

I am investigating the Telerik Reporting component and am trying to replicate a Crystal report using it.

So I've done most of the report (table and chart) via the report designers. 

My issue is that the report designer can reset some previously set properties which is very frustrating.

For example, i have the report set to show a Count value on the Y axis and a date on the X axis.  I have nearly everything as I want it in terms of fields to show, labels, etc and go into the Chart properties (the one that shows in a different dialog with the different tabs), select a different skin and a bunch of my previously set properties are gone.  So ok, mental note to set the Skin before anything else.

So I get it back to how it was, and then go into the Series Collection... dialog to check a property but I CANCEL out of the dialog and then I've lost the x and y axis value formats (at the least) so my report doesn't work anymore and I have to go in and figure out what has changed.

I've also noticed that the rotate property for the labels does not always work (I had it working but it was reset at some point as per above) and have resorted to setting this particular setting via code.

We're running Q3 2011.
Joan
Top achievements
Rank 1
 answered on 06 Feb 2012
1 answer
123 views
I have a simple report that is simply pulling the data from a SQL db and displaying it on the report. 

the qry is something like 

select name,title,number,address from table1 where name in (@values)

I then created a new parameter, that pulls the potential options from the database, the qry is something like 
select distinct (name) from table1


When i preview the report, the values are in the drop down list, but when i select any and hit preview, I get 0 results. 


if i change the query to be 
select name,title,number,address from table1 where name = @values
(and only select one value) it does return results. 


Suggestions on what would cause this behavior?
Steve
Telerik team
 answered on 06 Feb 2012
3 answers
187 views
Hi.

Is it possible to access a div element with jQuery? I need to write a costum jQuery function
for a "onClick" event in my Report. Within the div I have a picture and when the user clicks
on it, I want to pop-up a window to display the photo.

Screenshot: http://i44.tinypic.com/ok9y5e.jpg

Thanks!
Steve
Telerik team
 answered on 06 Feb 2012
1 answer
81 views

Hi,

I have an html page kept in my systems 'C drive'.
I need to show this html page in the telerik report.
this is the same case in the PDF also.
How can I  show this Html page ,PDF page in the telerik report?

this is an urgent requirement ...

Thanks

Sindu.
Steve
Telerik team
 answered on 06 Feb 2012
1 answer
557 views
Is there a way to put a button on the reportviewer that will directly print the report to the default printer?

I'm in Silverlight 5, latest release of Telerick controls and reporting.

right now I have to selected print preview, and then print.

Ideally I would also like to set then number of copies as well (defaulting it to 2).

I've searched the forums, but can't seem to find anything.  does that mean it's not possible?

Thanks.
Steve
Telerik team
 answered on 06 Feb 2012
1 answer
144 views

Hi,

I need to display some html content into HtmlTextbox.
how can i set  HtmlTextBox value in the runtime.

Thanks,

Sindu.


Steve
Telerik team
 answered on 06 Feb 2012
3 answers
128 views
I have a basic proof-of-concept ASP.NET Web project set up as recommended with separate class library for reports.

On my web page, I am rendering the report with the following code:

System.Data.DataTable dt = new MyDataClass.GetReport();
ReportClassLibrary.Report1 r1 = new ReportClassLibrary.Report1();
r1.DataSource = dt;
ReportViewer1.Report = r1;

The problem I am having is with the Navigation Group in the Web Viewer.  All the controls (first, previous, next and last) are all disabled and the text box shows page "0" of 2.

I tried three different combinations here including a DataSet, DataTable and DataView, with the same results.

What have I missed here?
Jean
Top achievements
Rank 1
 answered on 03 Feb 2012
11 answers
1.2K+ views
Has anyone done a comparison between telerik reporting and Crystal they can share? I'm in the process of selecting a reporting framework to move forward with and this would be great info. Might be good feedback for telerik too. :)
Steve
Telerik team
 answered on 03 Feb 2012
4 answers
180 views
What i am trying to achieve on a report being exported as PDF, is to have a chart on the first page, then starting on page 2 have a table that shows the detail records that get summed up for the chart. 
Right now i have that working, but if the data is empty the PDF will still have 2 pages, one with an empty chart, one with an empty table.  To do that I have a single detail section that is around 9 inch height, with the table in the very bottom inch.

Is there a better way to cause a page break between two different elements?  And is there any way to have it not generate a page 2 if i set the visibility of the table to false when I detect that the datasource is empty?
Would it be better to put the chat inside a Report Header section and make sure that would take up the full first page?
Steve
Telerik team
 answered on 03 Feb 2012
1 answer
520 views

Hi,

I had previously installed a trial version of the reporting module.  I purchased, downloaded and installed the package.  I moved the new dll's over to my bin directory and modified the web.config httphandlers with the new dll's version which is 5.3.12.131.  When I try to open the reports through the web app, I get the following error:

Could not load file or assembly 'Telerik.ReportViewer.WebForms, Version=5.3.11.1116, Culture=neutral, PublicKeyToken=a9d7983dfcc261be' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

For some reason is looking for version Version=5.3.11.1116 instead of 5.3.12.131.  Just in case for some odd reason the dll was being loaded from the GAC I double check windows assemblies and the new telerik dll's with version  5.3.12.131 are registered there too. 

Here is what I have in my web.config to define the httphandlers:

<handlers>
      <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" />
      <add name="Telerik.ReportViewer.axd_*" path="Telerik.ReportViewer.axd" verb="*" type="Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=5.3.12.131, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" preCondition="integratedMode" />
</handlers>

- and  -

<httpHandlers>
      <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
      <add verb="*" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler,Telerik.Web.UI"/>
      <add verb="*" path="Telerik.ReportViewer.axd" type = "Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=5.3.12.131, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" />
</httpHandlers>

Can anyone point me to anything else I should check?

Thanks!

David
Top achievements
Rank 1
 answered on 03 Feb 2012
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?