Telerik Forums
Reporting Forum
1 answer
235 views
Hi,

I am using SqlDataSource and data loaded from stored procedure. While designing the report, I am getting this error once the wizard try to populate the result fields. pls check the attachement.

Let me know if you want more details.

Thanks,
Suresh.
Peter
Telerik team
 answered on 02 Sep 2011
4 answers
458 views
Is it possible to use multiple datasources on the one report, and use them at the same time,  like Datasource1.field1,  Datasource1.field2, datasource2.field1, etc.?  I've already searched the forums and google, and the posts are all from 2008, so maybe it has been improved since then?



Chris @ Intrinsic
Top achievements
Rank 1
 answered on 01 Sep 2011
2 answers
87 views
I have the following set up in my report:

A Table with a Header row and 1 data row. Inside the data row is another table, which is displaying most of my data.

I'm having issues with this data row because if the inner table is too big to fit on the page, it moves the entire table to the next page, leaving only the header row on the first page and a ton of blank space. From there, it will then cut itself correctly if it's still too big for one page. Is there a way to force the paging logic to look inside a table row to page, before it just puts it on another?

I've tried setting KeepTogether = true on the outer table and KeepTogether = false on the inner one, but it still doesn't work.  Any help would be really appreciated because I may have to consider other reporting alternatives if I can't get this format working.

Thanks!
Peter
Telerik team
 answered on 01 Sep 2011
1 answer
257 views
I have a multi-value report parameter generated from a SQL query.  The values are retrieved from the database table and listed in a drop-down list.  I have a textbox on the report that should display the selected value(s); however, its' not working.  How do I display the selected value(s) inside that textbox?  The textbox is displaying system.object[].

Thanks,
Rob
Peter
Telerik team
 answered on 31 Aug 2011
3 answers
224 views
A sample for consuming the WCF service in a non-Silverlight web app would be very useful.  The documentation for the Telerik.Reporting.Service namespace is pretty sparse.  An example showing how to render a report using either the IResourceService export method or the IReportService render method in an ASP.NET app that does not use Silverlight would be very helpful.  For example, can I use a RenderingResult in a report viewer?  If not, how do I get a report back through the web service and display it in a page in another web app?

Thanks,
Jen
Peter
Telerik team
 answered on 31 Aug 2011
3 answers
660 views
I've recently joined a team that uses several Telerik Controls.  In trying to complile the solution i'm getting the following error ....

Error 110 The type 'Telerik.Reporting.Report' exists in both 'c:\Windows\assembly\GAC_MSIL\Telerik.Reporting\4.2.10.1110__a9d7983dfcc261be\Telerik.Reporting.dll' and 'c:\Users\dlburlin\AppData\Local\Temp\Temporary ASP.NET Files\ccams portal\63c8d154\7e485bda\assembly\dl3\cff3d571\00671892_66a1cb01\Telerik.Reporting.DLL' C:\Users\dlburlin\Documents\Visual Studio 2010\Projects\cCAMS\Web Application\DEV\cCAMSv2\cCAMS Portal\Reports\BackupInventoryReport.aspx.cs 53 27 C:\...\cCAMS Portal\

i've tried deleting the Temporary ASP.NET files folder but of course its recreated.

Any pointers on what's going on here would be much apprecaited!

regards
Dave

p.s. Using Visual Studio 2010/ .NET framework 4.x
Peter
Telerik team
 answered on 31 Aug 2011
0 answers
118 views
I have several reports that I have designed where I have optional fields that appear at the left margin of the report. Based on parameters provided the fields on the left side will be hidden but I also need to resize the report so that the dead space is not seen. I have tried making the fields invisible and setting the width of the fields to 0 and then setting the report widths as follows:
                this.Width = new Telerik.Reporting.Drawing.Unit(19.0D, Telerik.Reporting.Drawing.UnitType.Inch);
                this.Report_Detail.Report.Report.Width = new Telerik.Reporting.Drawing.Unit(19.0D, Telerik.Reporting.Drawing.UnitType.Inch);
                this.reportHeader.Report.Report.Width = new Telerik.Reporting.Drawing.Unit(19.0D, Telerik.Reporting.Drawing.UnitType.Inch);
                txReportHeader.Width = new Telerik.Reporting.Drawing.Unit(19.0D, Telerik.Reporting.Drawing.UnitType.Inch);
                this.pageFooter.Report.Report.Width = new Telerik.Reporting.Drawing.Unit(19.0D, Telerik.Reporting.Drawing.UnitType.Inch);

I assumed that in ding this that everything would shift left eliminating the dead space but this is not the case. Does anyone have any ideas for how this can be accomplished simply without having to go through the hassles of repositioning all other fields.

Any help would be appreciated.
Jim Harris
Top achievements
Rank 1
 asked on 31 Aug 2011
3 answers
76 views
Hi,

This is my first pass in trying to generate reports in Silverlight. I am using MVVM pattern in my silverlight project. I have object class as Model which further contains collection of other object(s). I do not have any database to store the data. This project is a data entry form and then generates a report at the end using the data entered.

I have generated a class library project to generate the report. How do I get access to the data in my silverlight project? Will referencing the project retain the state of the data? How do I approach? Any help will be highly appreciated.

Thanking you in advance.
Massimiliano Bassili
Top achievements
Rank 1
 answered on 31 Aug 2011
1 answer
198 views
Hi,
I have just upgraded to a production license of Telerik reporting and i am recieving the following error in VS2010 when openning a report - Value cannot be null. Parameter name: instance.
If i try and open a new report i recieve the following -
Error: this template attempted to load component assembly ' Telerik.Reporting.Design, Version5.1.11.713

I have openned a support ticket for this but as I have an urgent production need to get this resolved Im trying all avenues.

Thanks Chris
Chris
Top achievements
Rank 1
 answered on 31 Aug 2011
0 answers
168 views
Hi,

I am Kuldeep, trying to create dynamic report thru this code but show

blank.
Please help or suggest me, what I am making mistake in it. Is it right

code? And where I can find its solution or help.


private void table1_ItemDataBinding(object sender, EventArgs e)
        {
            dbCon = new SqlConnection

(ConfigurationManager.ConnectionStrings["abc"].ConnectionString);
            dbCon.Open();
            dbCon.Close();
            SqlDataAdapter adapter = new SqlDataAdapter("spOrder",

dbCon);
            Telerik.Reporting.Processing.Table processingTable = (sender

as Telerik.Reporting.Processing.Table);
            Telerik.Reporting.Table table1 = new

Telerik.Reporting.Table();
            DataTable dt = new DataTable();
            adapter.Fill(dt);
            processingTable.DataSource = dt;
            Telerik.Reporting.HtmlTextBox textboxGroup;
            Telerik.Reporting.HtmlTextBox textBoxTable;
            table1.ColumnGroups.Clear();
            table1.Body.Columns.Clear();
            table1.Body.Rows.Clear();
            int i = 0;
            foreach (DataColumn dc in dt.Columns)
            {
                Telerik.Reporting.TableGroup tableGroupColumn = new

Telerik.Reporting.TableGroup();
                table1.ColumnGroups.Add(tableGroupColumn);
                table1.Body.Columns.Add(new

Telerik.Reporting.TableBodyColumn(Unit.Inch(1)));

                textboxGroup = new Telerik.Reporting.HtmlTextBox();
                textboxGroup.Style.BorderColor.Default = Color.Black;
                textboxGroup.Style.BorderStyle.Default =

BorderType.Solid;
                textboxGroup.Value = dc.ColumnName.ToString();
                textboxGroup.Size = new SizeU(Unit.Inch(1.1), Unit.Inch

(0.3));
                tableGroupColumn.ReportItem = textboxGroup;

                textBoxTable = new Telerik.Reporting.HtmlTextBox();
                textBoxTable.Style.BorderColor.Default = Color.Black;
                textBoxTable.Style.BorderStyle.Default =

BorderType.Solid;
                textBoxTable.Value = "=Fields." + dc.ColumnName;
                textBoxTable.Size = new SizeU(Unit.Inch(1.1), Unit.Inch

(0.3));
                table1.Body.SetCellContent(0, i++, textBoxTable);
                table1.Items.AddRange(new ReportItemBase[] {

textBoxTable, textboxGroup });


            }

        }


Thanks and Regards!
Kuldeep Dwivedi
Kuldeep
Top achievements
Rank 1
 asked on 30 Aug 2011
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?