Occurs when a row's Select button is clicked, but before the C1GridView control handles the select operation.

Namespace:  C1.Web.UI.Controls.C1GridView
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
[C1CategoryAttribute("Category.Action")]
public event C1GridViewSelectEventHandler SelectedIndexChanging
Visual Basic
<C1CategoryAttribute("Category.Action")> _
Public Event SelectedIndexChanging As C1GridViewSelectEventHandler

Remarks

To cancel the operation set the Cancel property of the C1GridViewSelectEventArgs object to true.

Remarks

You must implement this event if the grid is not bound to a DataSource control.

See Also