New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
selectAllItems
Updated over 6 months ago
Selects all items in the GridTableView for which the method is invoked.
The AllowMultiRowSelection property of RadGrid should be set to true to select multiple items!
| selectAllItems() |
|---|
Example:
JavaScript
function SelectMasterTableItems() {
var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
//select all master table items
masterTable.selectAllItems();
}