Hi all, the Wicket - jQuery UI Api shows an example of a sortable List view: http://www.7thweb.net/wicket-jquery-ui/sortable/DefaultSortablePage?6 <http://www.7thweb.net/wicket-jquery-ui/sortable/DefaultSortablePage?6>
I would not only like to sort a list, but to delete single elements within the list by clicking on a button, see for example: <ul wicket:id="sortable" class="sortable"> <li wicket:id="items"> <span wicket:id="item" class="item">[label]</span> <img wicket:id="deleteButton"/> </li> </ul> How is it possible to receive those click events so that I know which list elements has been selected by the user? Is there a way to combine it with the Selectable approach, see http://www.7thweb.net/wicket-jquery-ui/selectable/DefaultSelectablePage?7 <http://www.7thweb.net/wicket-jquery-ui/selectable/DefaultSelectablePage?7> ? Thanks a lot, Chris