Telerik Forums
Reporting Forum
4 answers
66 views
The client creates a report in Telerik Report Designer. Sometimes (not always) if value contains "Enter" (the transition to a new line), then the report is broken, see attached screenshot
I tried to fix it, as shown here link (but in ReportDesigner)
this.textBox1.Value = "= \" \ r \ n \ r \ n \ "+ Fields.MyDataColumn";

No results yet.
Tell me, what is the reason? How can I solve this bug?
Hans
Top achievements
Rank 1
 answered on 26 Feb 2013
1 answer
324 views
My table has a datasource that returns a resultset of 0 rows. When the resultset is empty i would like to fill the first page with empty rows

Is there any solution to do this?

Thanks!

Kind Regards
gunter
Top achievements
Rank 1
 answered on 26 Feb 2013
6 answers
1.1K+ views
I have a report that has a couple Panels in it, I'd like to be able to show or hide these panels based on a few parameters.  I didn't see a way to bind the "Visible" property to a report parameter, so I set it manually..  I've made the Panel variable public, and in my business logic I set the "Visible" property based on a few business rules.  However, whenever I set "Visible = false" on any panel, the whole report fails to load.  I get "No Page to Display"

is there something special about the "Visible" property on the panel?  or is there a better way to show/hide a portion of a report?  I considered using sub reports, but thought that this would be much easier then creating a bunch of sub reports.

Thanks
Wadigzon
Top achievements
Rank 1
 answered on 25 Feb 2013
2 answers
128 views
I have an app that requires me to display four reports simultaneously. But it blows up while rendering the second report, because, I believe, the first report is still rendering.
I looked at code to access the IsInProgress property, but this requires me to include a reference to telerik.reportviewer.wpf.dll, which this silverlight project does not allow.
http://www.telerik.com/community/forums/reporting/telerik-reporting/notification-for-when-report-is-done-rendering.aspx

I should mention that the four reports are all the same underlying report using different parameters.

I believe I could simply define four distinct reports to get around this, but is it possible to otherwise determine when one report is done rendering and then begin the next?
Milen | Product Manager @DX
Telerik team
 answered on 25 Feb 2013
3 answers
209 views
Hello there.

I am using Telerik Reporting in Silverlight and for the most part, it works pretty well. I start the report from my Silverlight-project and  Silverlight ReportViewer opens. Then I have ReportLibrary where I have reports. My reports uses objectdatasources which search data from database. Datasource is a class in ReportLibrary, datamember is IQueryable-method in that class and then there's couple of parameters. With this kind of solution reports gets data from our database.

But especially reports with more than one objectdatasource occasionally gives the error "Report is unavailable or session has expired.", even though rendering haven't taken that much time.

After I press refresh button once or twice, the error disappears and Silverlight reportviewer shows the report correctly.

I know that there is an article about that error, but I would still like to know what is the most likely reason for this kind of behavior?

Thanks.
Stef
Telerik team
 answered on 25 Feb 2013
2 answers
94 views
Hi, since the upgrade I am getting warning messages about groups not being used - 'The field 'ReportsLibrary.ConsolidatedCPK.costCentreGroup' is never used.' and 'The field 'ReportsLibrary.ConsolidatedCPK.labelsGroup' is never used.' In the first group I do use the costCentre field and there are more than 10 textboxes in the labelsGroup, so I'm not sure how to get rid of the warnings?

I had the same in another class for groups that I did not use, so setting visibility false made the warnings go away, but I need visibility true in this class.

Thanks
Tobie
Tobie
Top achievements
Rank 1
 answered on 25 Feb 2013
14 answers
757 views
Telerik Reporting 2012 Q3 internal build 1025
Visual Studio 2012
Silverlight 5 with RIA/Entity Framework
Solution has 4 projects:  Web Project, Silverlight Project, Data Project (where model is located), and Reporting Project

I was able to create a report that works just fine with the Entity Framework using both a table and a stored procedure with no parameters.  However as soon as I add on with just one parameter it fails when trying to compile the project/solution:

Invalid Resx file. Type  could not be read from the data in line 145, position 5.  The type's internal structure may have changed.  Either implement ISerializable on the type or provide a type converter that can provide a more reliable conversion format, such as text or an array of bytes.  The conversion exception was: The constructor to deserialize an object of type 'System.RuntimeType' was not found.

I am creating a brand new report and using the wizard.  Here the the steps:

  • New Report
  • Add New Data Source
  • Entity Data Source
  • Choose an existing connection (same connection that works in my reports without SP's with parameters)
  • Choose an object context (same as above)
  • I then get a list of all of my tables in the model as well as all of the procedures.  I choose a test procedure with one integer parameter
  • In the Configure Data Source Parameters I have tried several different options. For now I am choosing a hard coded value of 1.
  • For design time parameters I am also giving it a 1.
  • Clicking finish takes me to the screen to choose data sources but now I have the one I created selected and I can see the 4 output fields.  I choose next.
  • Standard Report
  • Choose at least one field for the detail section
  • Stepped Layout
  • Normal Style Sheets and then Finish
  • I am taken to the report designer where I can see my fields.
  • As soon as I click the preview tab the solution tries to build and gives the error.

I have tried changing the hard coded value to a parameter and used the following code:

this.NeedDataSource += MyReport_NeedDataSource;
 
        private void MyReport_NeedDataSource(object sender, System.EventArgs e)
        {
            Telerik.Reporting.Processing.Report report = (Telerik.Reporting.Processing.Report)sender;
            this.entityDataSource1.Parameters["@accountID"].Value = report.Parameters["accountID"].Value;
            report.DataSource = this.entityDataSource1;
        }

But it doesn't seem to matter, I still get the same error.  Any ideas?

-Randy
HDC
Top achievements
Rank 1
 answered on 25 Feb 2013
1 answer
75 views
Just install q1 2013 because it looks as though the silverlightclient class will do what I want.
http://www.telerik.com/help/reporting/n_telerik_reporting_service_silverlightclient.html

I included references to telerik.reporting, telerik.reporting.service, telerik.reportviewer.silverlight, I don't see a telerik.reporting.service.silverlight dll and the class doesn't seem to exist in the referenced dll's. What am I missing?

using Telerik.Reporting;
using Telerik.Reporting.Service;
using Telerik.ReportViewer.Silverlight;
???
Joe
Top achievements
Rank 1
 answered on 24 Feb 2013
5 answers
105 views
Hi team,
1-I want to have a rad ajax combobox and date picker in my aspx screen as input parameters for my report, how can I do that ? 
2- kindly let me know if I can have link buttons inside the report itself so when the user click on that link button he will go to another report in details. 
Regards,
Mohammed
Mohammed
Top achievements
Rank 2
 answered on 23 Feb 2013
2 answers
83 views
Dear team,
Now I already created a report using the stand alone designer.
i want to import it to my library project in visual studio so i can do some update on it and can use it in different applications.
how can I do that or if there another way to do it.
Regards,
Mohammed
Mohammed
Top achievements
Rank 2
 answered on 23 Feb 2013
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?