New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

ItemDeleted Event

Fired when an automatic delete operation is executed.

Event Parameters

  • (object) sender

    • The control that fires the event
  • (GridDeletedEventArgs) e

    • Event arguments

      • (int) e.AffectedRows

        Gets the rows affected from the operation that changed the RadGrid data.

      • (Exception) e.Exception

        Gets the exception related with the operation. The property value will be 'null' if no exception occured durring the operation.

      • (bool) e.ExceptionHandled

        Gets or sets a value which if set to 'true' and exception was thrown will cause the RadGrid to skip throwing the exception and will let the user handle it.

      • (GridEditableItem) e.Item

        Gets the GridEditableItem which caused the event.

Attaching the event

In the Markup

<telerik:RadGrid ID="RadGrid1" runat="server" OnItemDeleted="RadGrid1_ItemDeleted">
</telerik:RadGrid>

In the Code behind

protected void Page_Init(object sender, EventArgs e)
{
    RadGrid1.ItemDeleted += RadGrid1_ItemDeleted;
}
Protected Sub Page_Init(sender As Object, e As EventArgs) Handles Me.Init
    AddHandler RadGrid1.ItemDeleted, AddressOf RadGrid1_ItemDeleted
End Sub

The event handler

protected void RadGrid1_ItemDeleted(object sender, GridDeletedEventArgs e)
{
    int affectedRows = e.AffectedRows;
    Exception exception = e.Exception;
    bool exceptionHandled = e.ExceptionHandled;
    GridEditableItem item = e.Item;
}
Protected Sub RadGrid1_ItemDeleted(ByVal sender As Object, ByVal e As GridDeletedEventArgs)
    Dim affectedRows As Integer = e.AffectedRows
    Dim exception As Exception = e.Exception
    Dim exceptionHandled As Boolean = e.ExceptionHandled
    Dim item As GridEditableItem = e.Item
End Sub

See Also

In this article