Telerik Forums
Reporting Forum
1 answer
112 views
Hi,

I have installed the new telerik report Q1 2010 .
In the help files im missing part of the: "embedding the report viewer" in an silverlight application. what should be in the svc file, and what to put in the config file?
I have used version q3 2009, is there a change in embedding between the versions?
can i get a more detailed help on how to  "embedding the report viewer" in an silverlight application.

Thanks
Steve
Telerik team
 answered on 03 Jun 2010
7 answers
255 views
I've built a web app that incorporates the web report viewer.  The page containing the viewer has the following doctype 

<!

DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

This results in the border of the report viewer rendering incorrectly.  it's simple enough to check just create apage with the report viewer included and add and remove the doctype to see the effect.

The only doctype that I've found that works is 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">

or to use no doctype. 

either of these solutions results in the vertical scrollbar space being reserved even though it is not required.

Any ideas?
 

Steve
Telerik team
 answered on 03 Jun 2010
1 answer
126 views
I can't figure out how to set the cursor for the reportviewer in winform so that the user can select text (to copy). The default cursor does not allow text selecting and only allows zooming.
Steve
Telerik team
 answered on 03 Jun 2010
1 answer
482 views
hello how can i set report viewer height  and width to grow until parent element dimensions?

i have set the ReportViewer height  and width to 100% but this is only working on IE.

i have also this css that i have saw in a oldest forum thread.

 html#html, body#body, form#form1, div#content, center#center
        {
            border: 0px solid black;
            padding: 0px;
            margin: 0px;
            height: 100%;
            min-height:100%;
            min-width:100%;
        }

But unfortanly this is not working on Chrome or Firefox

Marco Teodoro
Steve
Telerik team
 answered on 03 Jun 2010
0 answers
105 views
Hi. We wont to use telerik reports with silverlight, and It’s looks like we must to use WCF Services. Problem is this, that we couldn’t use IIS, but need to use Tomcat. And we encountering problem with hosting WCF on Tomcat. So, i have question, how to overcome this problem?
May be someone knows how to host it at tomcat / without ISS?
Or how to use some other simple service, not WCF?
Yura
Top achievements
Rank 1
 asked on 03 Jun 2010
3 answers
217 views


Hi ,

           How can I print Telerik  Report  using  C#.net  in asp.net

Eg:  
        // Report Viewer Object
        Telerik.ReportViewer.WebForms.ReportViewer objRV = new Telerik.ReportViewer.WebForms.ReportViewer();
       // Report object
        FeeCollectionIndvidualDetailsReport objrpt = new FeeCollectionIndvidualDetailsReport();

        objRV.Report = objrpt;
        objRV.RefreshReport();
  
         objRV.PrintReport();   // Function didn't find

      Thanks & Regards
      Praveen


         

  


Steve
Telerik team
 answered on 02 Jun 2010
9 answers
499 views
Dear All,
I have two problems with telerik reporting, could anyone give me some helps?
  1.How to hide the row(s) in a table(each rows have more than 1 columns)
  2.How to custom the export method for exporting the data to Excel/PDF file.


best wishes.
Peter
Telerik team
 answered on 02 Jun 2010
5 answers
107 views
Is there a way for changing the default labels of Silverlight report viewer? We have to translate them in Italian language for an our application.

Thank you 
Adriano
Steve
Telerik team
 answered on 02 Jun 2010
1 answer
35 views
Hello,
I just need to know if Telerik Reporting permits me to mark a piece of the report I create for reading the content after the pdf has been created...

I put some customer detail into a report, I need to scan the generated file later and then to read the content and write it to xml...
Thanks

Paolo
Steve
Telerik team
 answered on 01 Jun 2010
5 answers
256 views
Hi,

   I'm having chart in detail section. I need to bind the chart based on the item value of the report. I directly bind the chart in the detail_ItemDataBound without NeedDataSource event for the chart. I didn't get the chart. Then i try adding NeedDataSource event for the chart. But this gets executed before detail_ItemDataBound. Again I didn't get the chart. Then i tried detail_ItemDataBinding event to get value. Later i use the function for binding chart which i call in detail_ItemDataBound or in detail_ItemDataBinding. Still i didn't get the chart. All i get is there is no or empty series.

How can i bind the chart which is in detail section?

Here is the code which i use the bind the chart. Assume dt is DataTable holding data.
if (dt.Rows.Count > 0)
                {

                    for (int i = 0; i < dt.Rows.Count; i++)
                        total += Convert.ToInt32(dt.Rows[i]["Cnt"]);

                    Telerik.Reporting.Processing.Chart chtCur = sender as Telerik.Reporting.Processing.Chart;
                   
                    this.chtCur.Series.Clear();
                    this.chtCur.ChartTitle.TextBlock.Text = "Factors";
                    for (int i = 0; i < dt.Rows.Count; i++)
                    {
                        Telerik.Reporting.Charting.ChartSeries chartseries = new Telerik.Reporting.Charting.ChartSeries();
                        Telerik.Reporting.Charting.ChartSeriesItem item = new Telerik.Reporting.Charting.ChartSeriesItem();
                        item.Label.TextBlock.Text = dt.Rows[i]["Val"].ToString() + "\n" + (Convert.ToInt32(dt.Rows[i]["Cnt"]) / total * 100).ToString() + "%";
                        item.Name = dt.Rows[i]["Val"].ToString();
                        item.YValue = Convert.ToInt32(dt.Rows[i]["Cnt"]) / total * 100;
                        chartseries.Type = Telerik.Reporting.Charting.ChartSeriesType.Pie;
                        chartseries.Name = dt.Rows[i]["Val"].ToString();
                        chartseries.Items.Add(item);
                        this.chtCur.Series.Add(chartseries);
                    }
                    pnlCur.Visible = true;
                }
                else
                    pnlCur.Visible = false;

Please help.
Thanks in advance.
Steve
Telerik team
 answered on 01 Jun 2010
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?