xtrareports-js-aspxclientreportparameterspanel.md
The client-side equivalent of the ASPxClientDocumentViewer control’s Parameters Panel.
declare class ASPxClientReportParametersPanel extends ASPxClientControl
To access an ASPxClientReportParametersPanel , call the ASPxClientDocumentViewer.GetParametersPanel method.
SendMessageToAssistiveTechnology(message)
ASPxClientControlBase ASPxClientControl ASPxClientReportParametersPanel
See Also
Assigns a value to a parameter of the report displayed in the document viewer.
AssignParameter(
path: string,
value: any
): void
| Name | Type | Description |
|---|---|---|
| path | string |
A System.String specifying the parameter’s path.
| | value | any |
An object specifying the parameter value.
|
Assigns a value to a parameter of the report displayed in the document viewer.
AssignParameters(
parametersInfo: ASPxClientReportParameterInfo[]
): void
| Name | Type | Description |
|---|---|---|
| parametersInfo | ASPxClientReportParameterInfo[] |
An array of ASPxClientReportParameterInfo values specifying parameters and values to assign.
|
Returns a value editor that is associated with a parameter with the specified name.
GetEditorByParameterName(
parameterName: string
): ASPxClientControl
| Name | Type | Description |
|---|---|---|
| parameterName | string |
A String value, specifying the parameter name.
|
| Type | Description |
|---|---|
| ASPxClientControl |
An editor.
|
Returns an array storing the names of parameters available in a report.
GetParameterNames(): string[]
| Type | Description |
|---|---|
| string[] |
An array of String values.
|