Hi,
Is it possible to have a right click event for the header. When you right click on the header i need to call some functions.
There is not such event handler in grid.
The header object can be gotten by hdr property of the grid:
var header = grid.hdr;
You can try to set own event handler to this event.
For example:
grid.hdr.oncontextmenu = function(e){
…
};