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

ungroupColumn

Method which performs ungroup action for the column with UniqueName specified as an argument.

ungroupColumn(colUniqueName)
colUniqueName String The UniqueName of the column that will be ungrouped.

Example:

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