I'm using seesaw to program an interface in Swing.
I want to display a bulleted list of items. When an item is clicked I want an event handler to be called.
I have managed to get event handlers working for components/widgets, and I can display a bulleted list easily by inserting HTML into a Label. I figure that if nothing else is possible I may need to capture mouse click events for the parent and work out offsets.
What's the best way to have a clickable bulleted list with event handlers?