Telerik Forums
Reporting Forum
3 answers
91 views
We've spent the day trying to get the ReportViewer control in Telerik Reporting to work in our Silverlight application.

We've run into an issue. 
We hit this when trying to just place the viewer in a control to just workout how we'd like it placed on the page (didn't set any properties; just trying to style things).  We are getting the "AG_E_UNKNOWN_ERROR" error (XAML Parse Exception)

This is happening when viewing a control that contains the silverlight reportviewer.  We've included the following telerik assemblies in the Silverlight project: Telerik.ReportViewer.Silverlight, Telerik.Windows.Controls, Telerik.Windows.Controls.Input, Telerik.Windows.Controls.Navigation (we also have Telerik.Windows.Controls.Charting, Telerik.Windows.Controls.GridView, Telerik.Windows.Controls.Scheduler, Telerik.Windows.Data, Telerik.Windows.Themes.Windows7).

The control doesn't render in Blend.

We have version 3.2.9.1211 of the Telerik reporting controls (what I believe is the most current release)
The other assemblies are version (Telerik Silverlight) 2009.3.1103.1030 (which I believe is about a release or so back from Oct.)

We're really scratching our heads over this because we can create a test project with all of our references, place the control on the page and open it (still doesn't show in Blend).  We've even gone through and placed the viewer in our applications constructs within the test application and it still works.  However, when we go to our application, remove all of our custom controls, and include the viewer on the "MainPage" it still errors.

I wish we could tell you more about the error, but it is cryptic.  Hopefully the included files will help.

Mike G.


Steve
Telerik team
 answered on 18 Dec 2009
1 answer
931 views
Hi

 We have website in english and chinese language . reports in chinese website does not  altered according to website culture . How i can achieve this  to change culture of reports to chinese .

Thnaks ,
Naginder Singh
Steve
Telerik team
 answered on 18 Dec 2009
1 answer
146 views
Hi there,

I have to make an excel export from a GridView (WinForms) for a customer. I have some special items like barcode etc., so i could not use the default GridView-export. I made a report by hand, because the order of the columns are depending of the order in the GridView.
Now i want to include some excel formulas in the report, because the customer needs to edit some values that change the values in some other fields (e.g. total of a price column).
But I had the problem that, when I included the formula, it was formatted as text. So what you see in the field is e.g. "=SUM(F3:F32000)" instead of the result.
The value for this field in the code is
headerTotalAmount.Value = "=\"=SUM(" + (char)(columnIndex + 65) + "3:" + (char)(columnIndex + 65) + "32000)\""

How could I do this that excel accepts my formula?

Regards Simon



Steve
Telerik team
 answered on 18 Dec 2009
1 answer
168 views
I have a static pdf that I like to concatenate with a generated report "on the fly" . Is there any support for this in the reporting framework?
Steve
Telerik team
 answered on 18 Dec 2009
3 answers
230 views
Hi,
Lets say, a report with two groups, one detail section and formatted into two columns.I just wondering how to get a real new page after the outer group will finish and the next group should start on a new page. The report creates a new column when the pagebreak of the outer group is set to "After".
The first example show two groups, the detail-section and two columns in th editor, the second shows the created report. The second checklist (Checkliste Rütihofstrasse 5a) should appear on next page, cannot show them on the same page.

thanks in advance and best regards, Daniel
Steve
Telerik team
 answered on 18 Dec 2009
1 answer
87 views
Hi,

    How i can change the report that i will show or use at the reportviewer? (in silverlight scenario). I cant add a class library with all my reports to a Silverlight Project and i have to change the report type.

Thanks.
Best regards.
Moises.
Steve
Telerik team
 answered on 18 Dec 2009
4 answers
928 views
In trying to work with stored procedures to generate data for a Telerik report, I followed the tutorial located at this link:

http://www.telerik.com/support/kb/reporting/general/using-data-source-with-parameters-in-telerik-reporting.aspx


I have no data source set for the report, and am setting the data source to null during the constructor of the report object.

The issue is that the NeedDataSource Event does not seem to be firing....Is there anything else that needs to be done for the report to make this event fire when there is no data source?

I have tried using NeedDataSource and Need_DataSource...but still cannot get the event to fire....? Any further information that the tutorial might not include would be very helpful....Thanks!


     public MyReport()
        {
            InitializeComponent();
            this.DataSource = null;
        }

 private void MyReport_NeedDataSource(object sender, System.EventArgs e)
        {
            this.sqlDataAdapter1.SelectCommand.Parameters[@"ID"].Value = this.ReportParameters["VolID"].Value;

            Telerik.Reporting.Processing.Report rptTestReport = (Telerik.Reporting.Processing.Report)sender;

            rptTestReport.DataSource = this.sqlDataAdapter1;
        }
Steve
Telerik team
 answered on 18 Dec 2009
1 answer
123 views
Hello,

I've got two parameters that are defined in a report. I want to be able to pass these parameters through to the dataset that provides data for the report. I was able to do this in the autogenerated New() sub by just adding things like Me.ReportParameters("LastFind").Value to the line that fills the datatable.

The problem is that when somebody changes a parameter in the parameters editor when the report is displayed, those changes do not get passed through to the dataset.

Anybody know how I can pass those through? am I missing something obvious?

Thanks,

Mike
Steve
Telerik team
 answered on 18 Dec 2009
1 answer
142 views
I am building a report based on the reportbook. Is there a simple way to build a table of content with all the reports in the report book with page number  at the beginning?

Such as:


Contents
Intellectual Property Rights ............................................................................................................................... 2
Foreword ............................................................................................................................................................ 2
Foreword .......................................................................................................................................................... 66
1 Scope ..................................................................................................................................................... 67
2 References ............................................................................................................................................. 67
3 Definitions, conventions and applicability ............................................................................................. 76
3.1 Mobile station definition and configurations .................................................................................................... 76
3.2 Applicability .................................................................................................................................................... 76
3.2.1 Applicability of this specification ............................................................................................................... 76
3.2.1.1 MS equipped with a connector .............................................................................................................. 76
3.2.1.2 GPRS .................................................................................................................................................... 76
3.2.2 Applicability of the individual tests ............................................................................................................ 77
3.2.3 Applicability to terminal equipment ........................................................................................................... 77
3.3 Definitions ....................................................................................................................................................... 77
3.4 Conventions for mathematical notations .......................................................................................................... 77
3.4.1 Mathematical signs .................................................................................................................................... 77
3.4.2 Powers


thanks,

James
Steve
Telerik team
 answered on 18 Dec 2009
1 answer
146 views
Hi,

     I had a report and i set the Localizable = TRUE and Create both resources (for 2 languages) with the language propertie. At the main silverlight app at the current thread the language change by a combobox, i made the report but is still at the default language. Did i miss something? i have to pass it like a parameter and set the language at binding time? (i was trying this but it odesnt work :S)


Thanks for your help.
Best Regards.
Moises.
Chavdar
Telerik team
 answered on 17 Dec 2009
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?