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

getColumnByUniqueName

Returns a GridColumn object representing the column with the specified UniqueName.

getColumnByUniqueName(colUniqueName)
colUniqueName String The UniqueName of the GridColumn object that will be referenced.

Example:

function FindColumnOnClient() {
    var grid = $find("<%= RadGrid1.ClientID %>");
    grid.get_masterTableView().getColumnByUniqueName("ProductName");
} 
In this article