ASPxClientCardViewBatchEditApi.GetCellValue(visibleIndex, columnFieldNameOrId) Method
Gets the value of the specified cell.
Declaration
GetCellValue(
visibleIndex: number,
columnFieldNameOrId: string,
initial?: boolean
): any
Parameters
Name | Type | Description |
---|---|---|
visibleIndex | number | The visible index of the card that contains the processed cell. |
columnFieldNameOrId | string | A string value that specifies the field name or unique identifier (the column’s WebColumnBase.Name property value) of a column containing the processed cell. |
initial | boolean |
|
Returns
Type | Description |
---|---|
any | An object containing the specified cell’s value. |
Remarks
The code sample below demonstrates how to use the GetCellValue method.
var x = MyCardViewClientName.batchEditApi.GetCellValue(0, "ProductName");
Note
The GetCellValue method does not return a value if the column’s GridColumnEditFormSettings.Visible property is set to false
.
See Also