Telerik Forums
Reporting Forum
5 answers
134 views
Hey there.

Just got another little problem and a question.

I've designed a kind of catlogue.
My catalogue is grouped by manufacturer.
The report itself has two columns.
Now i want to print in the page footer the current manufacturer logo.
I've figured out, that this is not possible (page footer) so i thougt i maybe can print in the group footer.
this would work fine but the group footer is only shown half the page width because of the second column i think.

How can i solve this?

Now to my question:
In Microsoft Access for example i can set the column-fill-direction. (straight, zig zag...)
Is this possible with telerik too?

Peter
Telerik team
 answered on 08 Jun 2010
1 answer
209 views
We have recently converted many of our reports to use the new Telerik reporting and Web Viewer.  While most of these reports are running fine, there are some time-out issues we are running into.  The issues deal with the amount of data being renderred on the report and the values returned.  I have checked and the Stored Procedure getting the data is returning in just a few seconds, so the issue is not with data retrieval from the database.  What I am seeing is the following:

  • Select the report we want to view.  This makes the postback call to the server to retrieve the data.
  • The page returns from the postback, and the ReportViewer has the 'processing' icon displayed inside the content area.
  • This 'processing' continues for a minute or so and then times out while trying to render the report.

I know the report being displayed contains a lot of data.  Is there any way to set the viewer to have additional properties to allow it to process longer?  Is it actually making an additonal postback or AJAX call to the server after the initial postback to generate the actual report or is that done on the client?  Are there other settings we can use to speed up rendering if there is a lot of data being returned?

Thanks.

Peter
Telerik team
 answered on 08 Jun 2010
1 answer
152 views
I am curious to know how to programmatically set the the size of a table column. 

What I want to do is if a parameter is true then I want set that coumn size to zero so that it doesn't show on the report.  I've done this manually in the report with the properties but I am having problems figuring how how to do it in code.

Steve
Telerik team
 answered on 08 Jun 2010
4 answers
321 views
I'm new to this great product and i am wondering if it is posible to fill a report and print it from codebehind.

We use webforms. I am thinking to create a order, then add the end of the order on "Make Order". The user has selected a outputtype. This can be email, print, ... . When he selects print i would like to fill in the report template that we can make with this report tool and send to a printer. Basicly send the pdf that the telerik reporting viewer can make. But i don't need the report viewer on this webform. I just wanne use its functionality to fill in the template and print a pdf file.

Thanks :)
Steve
Telerik team
 answered on 08 Jun 2010
3 answers
579 views
Hi,
im new in reporting, and just wanted to add report to mine project, but when i create a reporte file ive got an error:
Could not find type "Telerik.Reporting.Report". Please make sure that the assembly that contains this type is referenced......
Peter
Telerik team
 answered on 07 Jun 2010
1 answer
347 views
With the version 2010.1.317, I was able to change font style like this :
    

txtTitle.Style.Color = System.Drawing.Color.FromArgb(154, 51, 102)

txtTitle.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(18)

txtTitle.Style.Font.Bold = True

 


Now, with the version 2010.1.423, all my style still like in the design mode and nothing change... What append?

thanks
Steve
Telerik team
 answered on 07 Jun 2010
3 answers
257 views
How can I use a dataset for the reports. Since until now the wizard created dataset that is what I'm using in my project, and I would not like to start using anything else. The wizard doesn't give me an option to create a dataset as of this release. If I select object datasource and then select a table adapter I created before hand the report wizard doesn't recognize the fields from the dataset.
Steve
Telerik team
 answered on 07 Jun 2010
5 answers
284 views
Currently the "Generating Report" text and image is positioned in the middle of the report.  Is there a way to have it appear at the top of the report?  If the report has a large height, the user needs to scroll down to see the "generating report".

Thanks for your help.
Steve
Telerik team
 answered on 07 Jun 2010
1 answer
176 views
Can you export an existing report to PDF format in a medium trust environment?

Will the following code work on Medium Trust?

void ExportToPDF(Telerik.Reporting.Report reportToExport) 
    { 
        ReportProcessor reportProcessor = new ReportProcessor(); 
        RenderingResult result = reportProcessor.RenderReport("PDF", reportToExport, null); 
 
        string fileName = result.DocumentName + ".pdf"
 
        Response.Clear(); 
        Response.ContentType = result.MimeType; 
        Response.Cache.SetCacheability(HttpCacheability.Private); 
        Response.Expires = -1; 
        Response.Buffer = true
 
        Response.AddHeader("Content-Disposition"
                           string.Format("{0};FileName=\"{1}\""
                                         "attachment"
                                         fileName)); 
 
        Response.BinaryWrite(result.DocumentBytes); 
        Response.End(); 
    }    
Peter
Telerik team
 answered on 07 Jun 2010
1 answer
259 views
I'm using the Model-View-ViewModel pattern in a WPF project and I have the new WPF ReportViewer control in a UserControl. I want to databind the Report property to a property of the underlying VIewModel:

 

 

 

<telerik:ReportViewer Report="{Binding Report}"

 

 

 

Grid.Column="1"/>

 


However, the report does not display - it just says "No Report" in the ReportViewer. I fired up Snoop and noticed that the DataContext does not appear to inherit from the UserControl. It's set to Telerik.ReportViewer.ReportViewerModel. Therefore, my binding is presumably looking for a Report property on this object, not the DataContext of the UserControl that hosts the ReportViewer. Is this possible? When the Report property gets set in my VM I'm raising a property changed event to update the UI.

Thanks,
Dave
Steve
Telerik team
 answered on 04 Jun 2010
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?