Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Raghu on Oct 22, 2008 02:30
open dhtmlx forum
Grid

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.
Answer posted by Support on Oct 22, 2008 08:03
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){
    ....
};