after refreshing a telerik report in our silverlight application, we get the error message, as shown in the attachment. We have tested if the exception occurs in the methods, which should deliver the data for the report, but that is not the reason. There no exception happened.
The exception message tells us, to look into the InnerException, but I don't know how I should do this, cause the debugger didn't stop anywhere to read the InnerException.
Additionally I assigned a method to the BindingValidationError event, but the method isn't executed, when the exception occured.
So my question is, how can I get the InnerException or even better, how can i prevent this exception?
I created a box shape and I've put some textboxes over it. In "Preview" everything looks ok but in HTML preview and in the actual ASP.NET ReportViewer the textboxes are hidden behind the box shape. I've tried to set the box background to transparent but that didn't change anything.
Is there any way to get the textboxes inside the box shape to appear on top of it ?
Reading about the SL report Viewer that can be used within a SL project, and looking at the demos, I would like to ask the following question:
Can we use the viewer as a "Component", just like GridView or Scheduler or Book, component where we can put the viewer in a SL page and use it?
If not possible with Q3 release, is there plan to create a component for the viewer and when?
Thanks!
..Ben
Hi,
I have access to the runtime steps in the details section so that it
can be made higher and the result of my group footer is a little lower. It is with the Measurement Properties are public but not as I do to access them
Is it possible to export the raw datatable form the report?
we need this as our clients would like the option to export/save the report as telerik does at the moment but would also like to export the datatable with no groupings or formating. is this possible?
It seems like TextBoxes don't wrap mid-word, so if there is a long word in a column, it just pushes the rest of the textboxes over in that row (see attached screenshot). Is there a workaround for this?
Hello - I am new to Telerik Reporting adn I have read a few posts about having to add the control to an ASPX page. My question: we use .Ascx user controls/pages, so is it possible to use the Telerik Reporting control on this type of control/page?
I'm trying to use Telerik reporting to generate a report which plots the coordinates of an area on a table. I already have the function which converts the lat/long to X, Y values but im having trouble drawing the shape in my report.
Is it possible to programmatically create a shape and specify the points (x,y values) ?
I was able to create the shape programmatically, but it is always displayed as a regular shaped polygon.
Please see my sample code below
PolygonShape shape1 = new PolygonShape ();
shape1.addLine (new PointF(0,0), new PointF(2,0));
shape1.addLine (new PointF(2,0), new PointF(3,2));
shape1.addLine (new PointF(3,2), new PointF(1,2));
shape1.addLine (new PointF(1,2), new PointF(0,0));
Shape shape2 = new Shape();
shape2.ShapeType = shape1 ;
I'm running into trouble and the sample code is not working. This is the code block and it returns 0 always. How can this be fixed. I need to roll this report out and can not do so because of this bug.