RadControls for ASP.NET AJAX Selects all items in the GridTableView for which the method is invoked.
Note |
|---|
The AllowMultiRowSelection property of RadGrid should be set to true to select multiple items! |
Example:
CopyJavaScript
function SelectMasterTableItems() {
var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
masterTable.selectAllItems();
}