Contextmenu Table

Hello Everyone,

I am currently implementing a simple table with a context menu.
I do this as demonstrated in the tutorial [1]
.

Nevertheless I am missing some key features like

  • Seperators
  • Icons
  • The possibility to include radioButtons

These are all features the user - and even the developer/designer :wink: - is used to from a context menu within the operating system.

So am I using the wrong component/contextmenu or are these features not supported by Vaadin?

Thanks in Advance for your time and knowledge! :wink:

Greetings
Stefan

[1]
http://demo.vaadin.com/sampler#TableActions

If the regular context menu is not satisfactory, I suppose you could have an ItemClickListener for the table. The click events carry the click coordinates (unfortunately only the browser-window-relative), which you can use to position, say, a sub-window. If you put an AbsoluteLayout as the root layout, you could position other UI elements as well, for example a PopupView (in visible state).