is there any way to define that, only one item can be selected with jquery.selectable widget?
Or i've to inmplement a workarround capturing events and manipulating by my self what happens?
$("#myList li").click(function() {
$(this).addClass("selected").siblings().removeClass("selected");
});