New to Telerik ReportingStart a free 30-day trial

Represents a custom parameter editor configuration with JavaScript function references for parameter matching and editor creation in the HTML5 WebForms ReportViewer. Used to define custom parameter editors that provide specialized input controls for specific parameter types or scenarios.

Definition

Namespace:Telerik.ReportViewer.Html5.WebForms

Assembly:Telerik.ReportViewer.Html5.WebForms.dll

Syntax:

C#
public class CustomParameterEditor

Inheritance: objectCustomParameterEditor

Constructors

C#
public CustomParameterEditor()

Properties

Gets or sets the name of the JavaScript function that creates the custom editor control for parameters that match the criteria.

C#
public string CreateEditorFunction { get; set; }
Remarks:

The function name should be specified without parentheses and must reference a JavaScript function that returns a custom editor control for parameter input in the HTML5 viewer.

Gets or sets the name of the JavaScript match function that determines whether this custom editor should be used for a specific parameter.

C#
public string MatchFunction { get; set; }
Remarks:

The function name should be specified without parentheses and must reference a JavaScript function that returns true if the editor should be used for the given parameter.