This is a migrated thread and some comments may be shown as answers.

WebReportViewer skinning export combobox

1 Answer 54 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Tim
Top achievements
Rank 1
Tim asked on 22 Feb 2012, 05:33 PM
I've applied a custom skin to my webreportviewer using a couple of examples found in the forums here but I would like to know how to apply a skin to the export combobox.  I'd like to be able to convert it to the RadCombobox if possible.

I've already tried using the example of hiding the webreportviewer and adding a custom toolbar but that's really not the easiest option because my viewer is inside a RadPane and the scrollbars get messed up.  I'd much rather just be able to skin the viewer itself.

thanks

1 Answer, 1 is accepted

Sort by
0
Steve
Telerik team
answered on 27 Feb 2012, 05:01 PM
Hi Tim,

The built-in report parameters' purpose is to provide basic UI that is available out of the box and that is enough for most scenarios. For other cases, when you require customization, you can hide all report parameters (Visible=false), create a custom parameter area and wire it up to the Report API e.g. use RadComboBox for ASP.NET AJAX control and pass the input via the report API:
Copy Code
Telerik.Reporting.Report report = (Telerik.Reporting.Report)this.ReportViewer1.Report;
report.ReportParameters["MyParam"].Value = RadComboBox1.SelectedValue;

Greetings,
Steve
the Telerik team
NEW in Q1'12: Telerik Report Designer (Beta) for ad-hoc report creation. Download as part of Telerik Reporting Q1 2012. For questions and feedback, use the new Telerik Report Designer Forum.
Tags
General Discussions
Asked by
Tim
Top achievements
Rank 1
Answers by
Steve
Telerik team
Share this question
or