Version

FooterRowSelectorClicked Property

Event fired when a row selector in the footer row is clicked.
Syntax
'Declaration
 
Public Property FooterRowSelectorClicked As String
public string FooterRowSelectorClicked {get; set;}
Example
Me.WebDataGrid1.Behaviors.RowSelectors.RowSelectorClientEvents.FooterRowSelectorClicked = "WDG1_FooterRowSelectorClicked"
this.WebDataGrid1.Behaviors.RowSelectors.RowSelectorClientEvents.FooterRowSelectorClicked = "WDG1_FooterRowSelectorClicked";
// The client event FooterRowSelectorClicked takes two parameters sender and e
// sender  is the object which is raising the event
// e is the MarginRowSelectorClickedEventArgs

    function WDG1_FooterRowSelectorClicked(sender, e) {

        //Returns the row selector element that was clicked
        var s = e.get_rowSelectorElement();

        }
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