New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

editAllItems

Method which switches all GridDataItems in edit mode.

editAllItems()

Example:

function EditAllRecords() {
    var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
    masterTable.editAllItems();
}  
In this article