How to trigger an Right Click event of Mouse when the Cell i

How to trigger an Right Click event of Mouse when the Cell is open for editing . I get only the Cut Copy Paste Menu whereas iam supposed to get my Context Menu. How to make it possible



The cell in edit state block onclick events to not interfere with default onclick processing in grid.
Basically you can disable such behaviour by location and commenting next line in dhtmlGridCell.js for necessary exCell type
    this.obj.onclick = function(e){(e||event).cancelBubble = true}
But I strongly not recommend to do such modification, the right click will be processed in normal way, but in same time other onClick reactions will be processed as well, it can cause very strange behaviors.