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:
public class CustomParameterEditor
Inheritance: objectCustomParameterEditor
Constructors
public CustomParameterEditor()
Properties
CreateEditorFunction
string
Gets or sets the name of the JavaScript function that creates the custom editor control for parameters that match the criteria.
public string CreateEditorFunction { get; set; }
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
string
Gets or sets the name of the JavaScript match function that determines whether this custom editor should be used for a specific parameter.
public string MatchFunction { get; set; }
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.