Skip to main content

ASPxClientVerticalGrid.DeleteRecordByKey(key) Method

Deletes a record with the specified key value.

#Declaration

TypeScript
DeleteRecordByKey(
    key: any
): void

#Parameters

Name Type Description
key any

An object that uniquely identifies the record.

#Remarks

Once the DeleteRecordByKey method is called, the ASPxVerticalGrid.RecordDeleting event is raised. It allows you to cancel the delete operation. After a record has been deleted, the ASPxVerticalGrid.RecordDeleted event is raised.

End-users can delete records by clicking the Delete command item.

See Also