Skip to main content

ASPxClientVerticalGridBatchEditApi.HasChanges Method

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

#Declaration

TypeScript
HasChanges(
    visibleIndex?: number,
    rowFieldNameOrId?: string
): boolean

#Parameters

Name Type Description
visibleIndex number

The record’s visible index.

rowFieldNameOrId string

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

#Returns

Type Description
boolean

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

#Remarks

The ASPxVerticalGrid 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