New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
ItemDeleted Event
Updated on Oct 27, 2025
Fired when an automatic delete operation is executed.
Event Parameters
-
(object)sender- The control that fires the event
-
(GridDeletedEventArgs)e-
Event arguments
-
(int)e.AffectedRowsGets the rows affected from the operation that changed the
RadGriddata. -
(Exception)e.ExceptionGets the exception related with the operation. The property value will be 'null' if no exception occured durring the operation.
-
(bool)e.ExceptionHandledGets or sets a value which if set to 'true' and exception was thrown will cause the
RadGridto skip throwing the exception and will let the user handle it. -
(GridEditableItem)e.ItemGets the
GridEditableItemwhich caused the event.
-
-
Attaching the event
In the Markup
ASP.NET
<telerik:RadGrid ID="RadGrid1" runat="server" OnItemDeleted="RadGrid1_ItemDeleted">
</telerik:RadGrid>
In the Code behind
C#
protected void Page_Init(object sender, EventArgs e)
{
RadGrid1.ItemDeleted += RadGrid1_ItemDeleted;
}The event handler
C#
protected void RadGrid1_ItemDeleted(object sender, GridDeletedEventArgs e)
{
int affectedRows = e.AffectedRows;
Exception exception = e.Exception;
bool exceptionHandled = e.ExceptionHandled;
GridEditableItem item = e.Item;
}