cellMouseDown

fires before releasing the left mouse button when clicking on a grid cell

void cellMouseDown(object row,object column,Event e);
rowobjectan object with a row configuration
columnobjectan object with a column configuration
eEventa native event object

Example

pivot.grid.events.on("CellMouseDown", function(row,column,e){
     // your logic here
});

Details

Related sample:  Grid events

Back to top