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

expandAllGroups

Method which expands all groups. It receives an optional parameter indicating which group level should be expanded.

Example:

function ExpandAllGroups() {
    var masterTableView = $find("<%=RadGrid1.ClientID %>").get_masterTableView();
    masterTableView.expandAllGroups(2);
}
In this article