New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
showInsertItem
Updated over 6 months ago
Method which switches the grid in insert mode and displays the insertion form.
| showInsertItem() |
|---|
Example:
JavaScript
function SwitchGridInInsertMode() {
var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
masterTable.showInsertItem();
}