Is it possible to show a right click menu on table items with SWT? The menu would be different for every item, e.g for some rows, some of the menu items would be enabled, for others, they would be disabled. So, each row would need its own menu, and when setting up the menu i'd need a way to identify which row I was working with.
Any ideas?
Table
instead of aTree
. – InterclavicleListener
, you know which row was clicked on. Just create/enable/disable theMenuItem
s accordingly. – Interclavicle