Grid Context Menu (help)

Hi, i’m struggling trying to add a working context menu to a grid, but the docs is very poor at that point.
Anybody does have a snippet that shows how i catch different menu events and relate them to the actual row and column that was clicked?

https://snippet.dhtmlx.com/jhe4h6vt

1 Like

That’s good, the menu is fired and the row is selected, but once i click on a Menu option:

contextMenu.events.on('Click', function (id, e) {
	alert(id);
});

How do i retrieve rowId and columnId?

Please, try to operate with the grid selection:
https://snippet.dhtmlx.com/xz4a64ti

1 Like

Thank you very much!