l := SpListPresenter new.
l items: #(1 2 3).
l contextMenu: (SpMenuPresenter new
addItem: [ :item |
item
name: 'something';
action: [ :e | e halt ] ];
yourself).
l open
If you open the context menu and click on it, e references the menu item adapter.
Given the following presenter
If you open the context menu and click on it,
e
references the menu item adapter.