Back to Devexpress

ASPxClientCustomizeParameterLookUpSourceEventArgs Class

xtrareports-js-aspxclientcustomizeparameterlookupsourceeventargs.md

latest3.5 KB
Original Source

ASPxClientCustomizeParameterLookUpSourceEventArgs Class

Provides data for the ASPxClientReportDesigner.CustomizeParameterLookUpSource and ASPxClientWebDocumentViewer.CustomizeParameterLookUpSource events.

Declaration

ts
declare class ASPxClientCustomizeParameterLookUpSourceEventArgs extends ASPxClientEventArgs

Remarks

ASPxClientCustomizeParameterLookUpSourceEventArgs objects with proper settings are automatically created and passed to the corresponding event handlers.

Inheritance

ASPxClientEventArgs ASPxClientCustomizeParameterLookUpSourceEventArgs

constructor(parameter, items)

Initializes a new instance of the ASPxClientCustomizeParameterLookUpSourceEventArgs class with the specified settings.

Declaration

ts
constructor(
    parameter: DevExpress.Reporting.Viewer.Parameters.IParameterDescriptor,
    items: DevExpress.Analytics.Utils.IDisplayedValue[]
)

Parameters

NameTypeDescription
parameterIParameterDescriptor

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.

|

Properties

dataSource Property

Specifies the data source that provides look-up values for the parameter editor.

Declaration

ts
dataSource: any

Property Value

TypeDescription
any

An Object specifying the data source that provides look-up values to the parameter editor.

|

items Property

Provides access to the collection of look-up parameter values.

Declaration

ts
items: DevExpress.Analytics.Utils.IDisplayedValue[]

Property Value

TypeDescription
IDisplayedValue[]

An array of IDisplayedValue objects that store information about look-up parameter values.

|

parameter Property

Provides access to an object that stores information about a parameter.

Declaration

ts
parameter: DevExpress.Reporting.Viewer.Parameters.IParameterDescriptor

Property Value

TypeDescription
IParameterDescriptor

An IParameterDescriptor object that stores information about the parameter.

|