Grid - how to get select column

Hi,
I have very simple grid with 5 columns with selection listener. For example :
gridProduct.addSelectionListener(s → { … });
How can I get select column index when row is selected?
Regards,
Matic

Hi do you mean how you could get the selected row? If then:

myGrid.asSingleSelect().getValue();

Hi,
Your solution will return struct of selected row. But I need clicked column index of selected row. So then I can open different dialog base on click column.

Regards,
Matic

Hi,
I think in V8 you can do grid.addItemClickListener(...)
But what about V10?