xtrareports-js-aspxclientcustomizeparameterlookupsourceeventargs.md
Provides data for the ASPxClientReportDesigner.CustomizeParameterLookUpSource and ASPxClientWebDocumentViewer.CustomizeParameterLookUpSource events.
declare class ASPxClientCustomizeParameterLookUpSourceEventArgs extends ASPxClientEventArgs
ASPxClientCustomizeParameterLookUpSourceEventArgs objects with proper settings are automatically created and passed to the corresponding event handlers.
ASPxClientEventArgs ASPxClientCustomizeParameterLookUpSourceEventArgs
Initializes a new instance of the ASPxClientCustomizeParameterLookUpSourceEventArgs class with the specified settings.
constructor(
parameter: DevExpress.Reporting.Viewer.Parameters.IParameterDescriptor,
items: DevExpress.Analytics.Utils.IDisplayedValue[]
)
| Name | Type | Description |
|---|---|---|
| parameter | IParameterDescriptor |
An IParameterDescriptor object that stores information about a parameter. This value is assigned to the ASPxClientCustomizeParameterLookUpSourceEventArgs.parameter property.
| | items | IDisplayedValue[] |
An array of IDisplayedValue objects that stores information about look-up parameter values. This value is assigned to the ASPxClientCustomizeParameterLookUpSourceEventArgs.items property.
|
Specifies the data source that provides look-up values for the parameter editor.
dataSource: any
| Type | Description |
|---|---|
| any |
An Object specifying the data source that provides look-up values to the parameter editor.
|
Provides access to the collection of look-up parameter values.
items: DevExpress.Analytics.Utils.IDisplayedValue[]
| Type | Description |
|---|---|
| IDisplayedValue[] |
An array of IDisplayedValue objects that store information about look-up parameter values.
|
Provides access to an object that stores information about a parameter.
parameter: DevExpress.Reporting.Viewer.Parameters.IParameterDescriptor
| Type | Description |
|---|---|
| IParameterDescriptor |
An IParameterDescriptor object that stores information about the parameter.
|