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

ASPxClientGridViewBatchEditApi.HasChanges Method

Returns a value that indicates whether the specified data cell‘s data has been changed.

Declaration

HasChanges(
    visibleIndex?: number,
    columnFieldNameOrId?: string
): boolean

Parameters

Name Type Description
visibleIndex number

An integer value that specifies the visible index of a row.

columnFieldNameOrId string

A string value that identifies the column by the name of the data source field to which the column is bound, or by the column’s name.

Returns

Type Description
boolean

true, if the cell has changed data; otherwise, false.

Remarks

The ASPxGridView control allows you to modify a batch of grid data on the client side and send it to the server in a single request. Use the HasChanges method to determine whether the specified data cell has changed data.

See Also