RadGrid for ASP.NET AJAX

RadControls for ASP.NET AJAX

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:

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