How to prevent grid column component from consuming click event

I have a grid that uses a custom layout to display a single column. Each row will thus render with a component (it is in fact created as a component column). The problem is that when I click on the row, the underlying grid selection does not happen.
How can I bypass the cell component from consuming the click event, and propagate the event to the grid so that the row can be selected normally?

Is this a question about Vaadin 10 or Vaadin 8?

This would be about Vaadin 8.

You could have luck by trying Column.setHandleWidgetEvents(true);

See also the tickets here

https://github.com/vaadin/framework/issues/9649

and here

https://github.com/vaadin/framework/issues/7833

… for more discussion about the topic.

Hai,
I am using vaadin14 gridPro…I used anchor for component renderer. While clicking on the anchor it will show one dialog. But here i am facing one issue, Once i click on the anchor the item click event also firing so the row also selected but i don’t need to select the row. Have any solution for this issue…

Regards,
Sajeesh AP.