Telerik Forums
Reporting Forum
6 answers
323 views
Hello

I have created a WPF report service in my web services solution but I cannot find anyway of connecting my WPF client using the ReportViewer to this service. The Silverlight equivalent has a ReportServiceUri property which I have used to test out my web services. Why doesn't the WPF control have the same properties? Is this something that is being added?

This is a bit of a show stopper for us as all our application is written in WPF. Is there an alternative method?

Would really appreciate any help you can give.
Regards
Steve
Arne
Top achievements
Rank 1
 answered on 14 Nov 2012
7 answers
794 views
I created a Telerik Report using the EntityDiagram ORM model to pull information from a Sql Server table.  I added a Telerik Report Viewer to my webpage, Default.aspx, and when I run it I get this error:

Telerik.OpenAccess.RT.sql.SQLException: Invalid object name 'voa_keygen'.
   at Telerik.OpenAccess.RT.Adonet2Generic.Impl.StatementImp.executeQuery(String sql)
   at OpenAccessRuntime.Relational.sql.HighLowRelationalKeyGenerator.IsCached(Connection con, RelationalKeyGeneratorInfoCache infoCache, String tab, String kCol, String vCol, String key, Boolean& ret)
   at OpenAccessRuntime.Relational.sql.HighLowRelationalKeyGenerator.init(String className, RelationalTable theClassTable, Connection con, RelationalKeyGeneratorInfoCache relationalKeyGeneratorInfoCache)
   at OpenAccessRuntime.Relational.RelationalStorageManagerFactory.init(Boolean full)
Ivailo
Telerik team
 answered on 14 Nov 2012
1 answer
134 views
dear support team,

is it possible to show/hide items from the report when exporting to excel (or powerpoint)? when exporting I need to show an extra information block of the report, is something like this possible?

kind regards
Squall
Top achievements
Rank 1
 answered on 14 Nov 2012
5 answers
1.0K+ views
I know that when you export to CSV, the Column Headers are just the "Names" of the text box.  I want to have descriptive Column Headers, but since the name is can't have spaces, special characters, etc., I'm pretty limited. 

I'm wondering if there is any other way of specifing Column Headings that would allow me more flexibility? 

It would be great if you could add a property to TextBox that is the text to use for that TextBox's Column Header if it is exported to CSV.  I know that might be a lot to go through for just one Export Format and for just one improvement, but I can't think of any other way to have good Column Headers that aren't tied to the name of the textbox in code.

Any help would be appreciated.

Thanks,
-Stephen
Steve
Telerik team
 answered on 14 Nov 2012
3 answers
154 views
I have embedded the asp.net web viewer into my application and am finding that the chart control does not render correctly in either IE9 (compatibility on or off) or Chrome.
I have attached several images to this issue:
1. VS Preview.jpg - Shows the chart rendering correctly in Visual Studio 2010 Preview.
2. VS WebPreview.jpg - Shows the chart rendering correctly in Visual Studio 2010 Web Preview.
3. IE Web Preview.jpg - Shows the chart not rendering correctly in IE9 with compatibility mode off.
4. IE Web Preview CM.jpg - Shows the chart not rendering correctly in IE9 with compatibility mode on.

I have tried all kinds of things such as AutoLayout, Margins etc and none of these make any difference. The chart always renders incorrectly in the browser.
Can somebody help me with this as this issue essentially makes telerik reports unusable for my customers at the moment.

Many thanks

Steve
Telerik team
 answered on 14 Nov 2012
2 answers
97 views
Hi..
How do I create a marked zone that is a polygon?
I can only seem to create squares or rectangles ?

Need to create a marked zone based on 10 points.

thx in advance
Igor
Top achievements
Rank 1
 answered on 13 Nov 2012
1 answer
100 views
We're having quite a few problems with the Telerik reporting tools. Perhaps these issues are all just something we're doing wrong (and frankly we'd be happy if they were), but we're starting to believe that it's really a series of bugs in the product. This one we refer to internally as "Are We There Yet?".

Are We There Yet?
The Incredible Shrinking WPF ReportViewer is certainly a problem, but what led us to it in the first place is that there doesn't seem to be a way to host the ReportViewer in a RadWindow and accomplish the following:

  1. Position the window in the center of the owner (or even center screen) AFTER the report is actually rendered
  2. Ensure that the window is smaller than the screen resolution AFTER the report is actually rendered so that users can do things like click on the "Close" button

If we could set the ZoomMode to FullPage and then programmatically size and position the host window AFTER the report was rendered then we might be okay, but we can't find an event or other reliable way to know precisely when the ReportViewer is finished rendering so we're kind of stuck. Are we missing an event? How else can we generate the report and make sure the user can actually interact with it?

Greg
IvanY
Telerik team
 answered on 13 Nov 2012
1 answer
120 views
We're having quite a few problems with the Telerik reporting tools. Perhaps these issues are all just something we're doing wrong (and frankly we'd be happy if they were), but we're starting to believe that it's really a series of bugs in the product. This one we refer to internally as "The Incredible Shrinking WPF Report Viewer".

The Incredible Shrinking WPF Report Viewer
In our product, we host the Telerik WPF Report Viewer in a custom WPF user control (a Telerik RadWindow actually) and expose a ShowReportViewer method. What we would like to do is to activate (show) our control with the child Report Viewer and adjust the window size and placement so that the report is always clearly visible and, ideally, centered on the owner window.

Nothing exotic, right?

/// <summary>
/// Shows the report viewer.
/// </summary>
/// <param name="modal">if set to <c>true</c> [modal].</param>
public void ShowReportViewer(bool modal = false)
{
    this.WindowStartupLocation = WindowStartupLocation.CenterScreen;
    this.TelerikReportViewer.ViewMode = ViewMode.PrintPreview;
  
    //// Uncommenting this line results in the problem...
    ////this.TelerikReportViewer.ZoomMode = ZoomMode.FullPage;
  
    this.ShowWindow(modal);
    this.window = ParentOfTypeExtensions.ParentOfType<Window>(this);
    this.window.Topmost = true;
    this.window.ShowInTaskbar = true;
    this.window.Activate();
}

If we uncomment that ZoomMode line, our window will open then the ReportViewer will then immediately begin shrinking the report down to 0% one step at a time and continue to do so which means the user has to force close the app. It behaves the same as it someone were to open the window then immediately began clicking the zoom decrease arrow as fast as they could. Note that the zoom percent always starts at 13% (we have no idea why) and the behavior is the same no matter if we set the ZoomMode property value in XAML or in the code-behind.

Greg
IvanY
Telerik team
 answered on 13 Nov 2012
4 answers
185 views
I'm trying to print a report to envelopes in a Silverlight application. The printer has envelopes in tray 1, and plain paper in tray 2. Is there a way to get it to always pull envelopes from a specific tray, or to specify a particular paper size that the printer should use? Right now it always pull from the plain paper tray. I have the paper size in the report set to the size of the envelope. It's a standard #10 envelope.

Thanks
IvanY
Telerik team
 answered on 13 Nov 2012
1 answer
150 views
We're having quite a few problems with the Telerik reporting tools. Perhaps these issues are all just something we're doing wrong (and frankly we'd be happy if they were), but we're starting to believe that it's really a series of bugs in the product. This one we refer to internally as "Extra Pages".

Extra Pages
Some of our reports generate (seemingly) random extra pages. For whatever reason we have some reports that will generate an extra page even if the previous page has only one or two items in the detail section. However, this problem *might* have been solved after we upgraded to the Q3 2012 release.

We're continuing to test, but before we waste too much time here can anyone confirm or deny that an issue related to extra pages was addressed in the latest release?

Greg
IvanY
Telerik team
 answered on 13 Nov 2012
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?