Telerik Forums
Reporting Forum
3 answers
577 views
Hello

I am trying to evaluate the reporting tools in and ASP.NET (VB) application. I followed the 'Creating a simple report' example in the Help file and I get the following message after I rebuild the application and click on Preview :
'the source of the report definition has not been specified'

Regards
James
James
Top achievements
Rank 1
 answered on 06 Apr 2011
2 answers
234 views
Hi Guys (and girls),

I have a super interesting bug.

I'm using the AJAX Telerik Report viewer inside an MVC project.

The parameters of the report are actually set programatically.
I have an AJAX.Form that lets the user set some parameters. This will draw a report by overriding the parameters like so:

Protected Overrides Sub OnLoad(ByVal e As System.EventArgs)
    MyBase.OnLoad(e)
    'Bind the report viewer
    If Model.Report Is Nothing Then
        Throw New Exception("Sorry an error has occured. (The report must be intialized before render attempt)")
    End If
     
    If Model.ReportParameters Is Nothing Then
        Model.ReportParameters = New Telerik.Reporting.ReportParameterCollection()
    End If
     
    For Each existingParam In Model.ReportParameters
        Model.Report.ReportParameters.Add(existingParam)
    Next
     
    modularRptViewer.ParametersAreaVisible() = False
    modularRptViewer.Report = Model.Report
     
End Sub

It never finishes rendering. it just sits there on "Generating report"

The report it is binding using a sql dataSource.  I've put a trace on the sql server and i can see it endlessly hitting the stored procedure the datasource uses. (It also endlessly calls [sp_procedure_params_100_managed] passing_in_the_SP_name)

any idea what is going on?
Could it be caused by having a table sitting in the details section (this always makes me feel weird).

Regards,

Joseph
Top achievements
Rank 1
 answered on 05 Apr 2011
1 answer
62 views
Hi,

I am looking at purchasing telerik reporting I do have one question. Is it possible to implement something so users are able to export specific fields returned in the report e.g. if a report returned first name, last name, age and occupation, let the user select to export only last name and occupation or any other combination?

Thanks,

Jay
Steve
Telerik team
 answered on 05 Apr 2011
1 answer
150 views
Hi,
I have a HtmlTextBox control in my report. The size of the control is: 16,4cm width; 1,1cm height.
After ItemDataBinding the value of the control is:

"<html><body><p>wejiowof<strong>dqwqwdqwd<em>qwdqwdqwdqwd<u>dqwwdwdqdwqwdq</u></em></strong></p>
<ol>
<li><strong><em><u>wefwefwefwef</u></em></strong>
</li><li><strong><em><u>iohoihoih</u></em></strong>
</li><li><strong><em><u>uuiohioh</u></em></strong>
</li><li><strong><em><u>ioiojhouih</u></em></strong>
</li><li><strong><em><u>uhuohouihoh</u></em></strong></li></ol></body></html>"

The control doesn't display this html.

If I reduce the html text to:
"<html><body><p>wejiowof<strong>dqwqwdqwd<em>qwdqwdqwdqwd<u>dqwwdwdqdwqwdq</u></em></strong></p></body></html>"
The control display the text.

It seems that the control doesnt't resize.
I set the CanGrow property to True and CanShrink to False.
What is wrong?
Thanks
Steve
Telerik team
 answered on 05 Apr 2011
1 answer
109 views

hello

 i have a problems with RadControl.
i've used RadControl as trial version.
i'm trying to print my source code.

(
    ReportViewer.Xaml.cs in
    ReportViewer1.UseNativePrinting = true;
   
    There are parts UseNativePrinting change to false
    Print Capacity (Mb -> Kb) reduces
)

But font is broken up when I change properties of print function.
how can I fix my korean font??
save me, plz,,,

Have a nice day..^^

Steve
Telerik team
 answered on 05 Apr 2011
1 answer
91 views

hi, i have a problems with RadControl.
i've used RadControl as trial version.
i'm trying to print my source code.

(Xaml.cs the ReportViewer1.UseNativePrinting = true;
There are parts UseNativePrinting change to false
Print Capacity (Mb -> Kb) reduces)

But font is broken up when I change properties of print function.
how can I fix my korean font??
save me, plz,,,

Peter
Telerik team
 answered on 05 Apr 2011
1 answer
177 views
Telerik Reporting using Silverlight is working properly from our local intranet but after we publish it on our live server we are getting following error message.

---------------Inner Exception----------------
There was no endpoint listening at http://[dev.site with path to service].svc that could accept the message. This is often caused by incorrect address or SOAP action. See InnerException, if present, for more details.
---------------Inner Exception----------------
Unable to connect to the remote server
---------------Inner Exception----------------
A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because host has failed to respond [IP address:80].

Please check the attached file for screenshot of error message.
Massimiliano Bassili
Top achievements
Rank 1
 answered on 05 Apr 2011
1 answer
80 views
Good evening,

My report contains horizontal and vertical lines to divide up items in the report. Their colours are set to black, but for some reason when printing horizontal lines they print out as red ish colour where as vertical lines print as they should.

When I save the document as a pdf and then print from Adobe Reader all of the horizontal lines print as they should, black.

I was wondering if anyone else here has the same problem as me when printing horizontal lines on a report?

Thanks for your time,

Rob

P.S. I'm using the WPF report viewer and version Q1_2011_v5_0_11_316)
Steve
Telerik team
 answered on 05 Apr 2011
1 answer
260 views
Hello,

I am working on telerik reporting for generate the sales report. When I press button of "telerik report viewer" then print functionality is not working correctly. I am facing following problem regarding print a report.

1. It just print first page of report, not all pages of reports ?
2. On first page it also print website URL on the top right corner ? 
3. Report layout and colors are not correctly printed ?

Regards
Mohsin JK
Peter
Telerik team
 answered on 05 Apr 2011
1 answer
193 views
Hi all,

we have some problems regarding reports after deploying our web application to a server.
We're using Telerik Reporting Q3 2010.
In our application we use a RadWindow with a ReportViewer for different reports we need. The datasource is set programmatically:

Dim report1 As New easyTennis.Rechnung
  
                report1.DataSource = GetDataTable(ssql & " where BelID = " & nKey)
                Me.ReportViewer1.Report = report1


The reports are working fine when we run our application in debug mode on our development machine, but after deploying it to a web server and running the application we get this error when we try to open a report (see attached image!).

This is a very urgent matter and right now we're really at a loss as to why the reports won't show. Any help would be appreciated.

Thanks.
Ulrich
Top achievements
Rank 1
 answered on 05 Apr 2011
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
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?