Version

RowDeleted Event (WebDataGrid)

Event that is fired every time a row is deleted.
Syntax
'Declaration
 
Public Event RowDeleted As RowDeletedHandler
public event RowDeletedHandler RowDeleted
Event Data

The event handler receives an argument of type RowDeletedEventArgs containing data related to this event. The following RowDeletedEventArgs properties provide information specific to this event.

PropertyDescription
Exception (Inherited from Infragistics.Web.UI.GridControls.EditedEventArgs)Provides a reference to the exception that is thrown during an edit operation. Null if the opertation succeeded.
ExceptionHandled (Inherited from Infragistics.Web.UI.GridControls.EditedEventArgs)If an exception was thrown during an edit operation this property indicates whether it is handled inside of the event handler or it should be forwarded to the application. Can be set inside of the event handler.
RowID (Inherited from Infragistics.Web.UI.GridControls.EditedEventArgs)ID of the row the edit event is associated with.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also