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

Parameter Area display

2 Answers 175 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
RvdGrint
Top achievements
Rank 1
RvdGrint asked on 12 Mar 2012, 01:43 PM
Hello,

I'm new to Telerik Reporting. Is it possible to force parameter fields to be displayed on an new line. In my case the parameters are placed after each other (by 2) . I've 5 parameter fields and I want them to be displayed like:

ParameterField1
ParameterField2                ParameterField3
ParameterField4                ParameterField5

Please let me know how to achieve this.

Regards,
  Jos.

2 Answers, 1 is accepted

Sort by
0
Steve
Telerik team
answered on 12 Mar 2012, 02:05 PM
Hi Jos,

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 (or the standard DropDownList) control and pass the input via the report API:
Copy Code
Copy Code
Telerik.Reporting.Report report = (Telerik.Reporting.Report)this.ReportViewer1.Report;
report.ReportParameters["MyParam"].Value = RadComboBox1.SelectedValue;

Regards,
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.
0
Gaurav
Top achievements
Rank 1
answered on 15 Jul 2013, 08:53 AM
Any sample for this ??
Tags
General Discussions
Asked by
RvdGrint
Top achievements
Rank 1
Answers by
Steve
Telerik team
Gaurav
Top achievements
Rank 1
Share this question
or