New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
editSelectedItems
Updated over 6 months ago
Method which switches all selected items in the grid in edit mode.
| function editSelectedItems() |
|---|
Example:
JavaScript
function EditFirstItem() {
var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
masterTable.editItem(masterTable.get_dataItems()[0].get_element());
}