ASPxClientVerticalGrid.GetSelectedFieldValues(fieldNames, onCallback) Method
Returns the record values displayed within all selected records.
Declaration
GetSelectedFieldValues(
fieldNames: string,
onCallback: ASPxClientVerticalGridValuesCallback
): void
Parameters
Name | Type | Description |
---|---|---|
fieldNames | string | The names of data source fields separated by a semicolon, whose values within the selected records are returned. |
onCallback | ASPxClientVerticalGridValuesCallback | A ASPxClientVerticalGridValuesCallback object that represents the JavaScript function which receives the list of record values as a parameter. |
Remarks
The GetSelectedFieldValues method sends a callback to the server to obtain the required field values and pass them back to the client. These values are received by the JavaScript function specified by the onCallback parameter.
See Also