Get selected Column Grid

Hi, i have question how can i get the selected column from a Grid?

I guess there’s no “column selection” event in the Grid class. Users can select entire rows only. As an alternative, you can add components in the Grid cells and click listeners to those components. Another option is to set fixed widths to the colums and then doing the math to calculate the colum based on clickEvent.getClientX(), but this sounds like not very portable and maintainable and probably not very flexible either. I cannot think of another solution to this atm. What’s your usecase?