New to Telerik UI for ASP.NET AJAX? Start a 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:
JavaScript
function FindColumnOnClient() {
var grid = $find("<%= RadGrid1.ClientID %>");
grid.get_masterTableView().getColumnByUniqueName("ProductName");
}