Class
CustomParameterEditor

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:

cs-api-definition
public class CustomParameterEditor

Inheritance: objectCustomParameterEditor

Constructors

CustomParameterEditor()

Declaration

cs-api-definition
public CustomParameterEditor()

Properties

CreateEditorFunction

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

Declaration

cs-api-definition
public string CreateEditorFunction { get; set; }

Property Value

string

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.

MatchFunction

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

Declaration

cs-api-definition
public string MatchFunction { get; set; }

Property Value

string

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.