New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
expandItem
Updated over 6 months ago
Method which expands the table row with index passed as an argument. If the index corresponds to nested table item, all parent items will be expanded to top.
| expandItem(index) | ||
|---|---|---|
| index | Integer | The row corresponding to the index will be expanded. | 
Example:
JavaScript
function ExpandFirstItem() {
    var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
    masterTable.expandItem(masterTable.get_dataItems()[0].get_element());
}