Skip to main content
A newer version of this page is available. .

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

A zero-based integer value that specifies the visible index of a card containing 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

true, to return the initial (server) value; false, to return a value currently contained on the client side (modified value).

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