Using the EditMode="InPlace" edit form of the grid, is it possible to leave the "Update" link button where it is but place the "cancel" link button in the next column (where the "Delete" link button is - see attached)
Protected Sub grdResources_ItemDataBound(sender As Object, e As Telerik.Web.UI.GridItemEventArgs) Handles grdResources.ItemDataBound
If e.Item.IsInEditMode Then
If TypeOf e.Item Is GridDataInsertItem Then
Dim CancelButton As LinkButton = DirectCast(e.Item.FindControl("btnCancel"), LinkButton)
CancelButton.Visible = False
Dim UpdateButton As LinkButton = DirectCast(e.Item.FindControl("btnUpdate"), LinkButton)
UpdateButton.Visible = False
Else
Dim CancelUpdateButton As LinkButton = DirectCast(e.Item.FindControl("btnCancel"), LinkButton)
CancelUpdateButton.Visible = True
Dim AddButton As LinkButton = DirectCast(e.Item.FindControl("btnAdd"), LinkButton)
AddButton.Visible = False
End If
End If
End Sub