New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
groupColumn
Updated over 6 months ago
Method which groups the grid by the column with UniqueName specified as an argument. All server grouping capabilities of RadGrid are applicable for this case as well.
| groupColumn(colUniqueName) | ||
|---|---|---|
| colUniqueName | String | The UniqueName of the column that will be grouped. |
Example:
JavaScript
function GroupByColumn() {
var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
masterTable.groupColumn("Country");
}