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

get_headerMenu()

Property which returns the client object of the grid header context menu when switched on. Useful when you would like to customize the items in it on the client (see the javascript logic at the top of this help topic for a reference).

get_headerMenu()

Example:

function getHeaderContextMenu() {
    var grid = $find("<%=RadGrid1.ClientID %>");
    var headerContextMenu = grid.get_headerMenu();
}
In this article