Version

RowSelectorClicking Property

Event fired before a row selector is clicked.

This event is cancelable.

Syntax
'Declaration
 
Public Property RowSelectorClicking As String
public string RowSelectorClicking {get; set;}
Example
Me.WebDataGrid1.Behaviors.RowSelectors.RowSelectorClientEvents.RowSelectorClicking = "WDG1_RowSelectorClicking"
this.WebDataGrid1.Behaviors.RowSelectors.RowSelectorClientEvents.RowSelectorClicking = "WDG1_RowSelectorClicking";
// The client event RowSelectorClicking takes two parameters sender and e
// sender  is the object which is raising the event
// e is the RowSelectorClickingEventArgs

      function WDG1_RowSelectorClicking(sender, e) {

          //Returns the row that the row selector belongs to
          var row = e.get_row();

          //Returns the index of the row
          var index = row.get_index();
          
          if (!confirm("Are you sure you want to select the row with index  "+index + " ?"))

              //Cancels the 'RowSelectorClicking' event
              e.set_cancel(true);

      }
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