vote up 1 vote down star

Hi All, I am looking for info on the event and ui objects the jquery selectable events: "selecting", and "start" take as parameters. I cannot find this in the documentation and looping through the properties is no help.

  $('#content_td_account').selectable({
                                      filter: 'li:not(".non_draggable")',
                                      selecting: function(event, ui) { 

                                      }

                                       });

Specifically I want to find what elements are being selected and check them to see if their parent elements are the same or not. I assumed this would be in the ui object some where.

flag

69% accept rate

1 Answer

vote up 1 vote down

When an element is selected it gets the ui-selected class added.

So you could get all selected elements with $(".ui-selected")

This might not work exactly but I think the idea would be something like this:

$('#content_td_account').selectable({
  filter: 'li:not(".non_draggable")',
  selecting: function(event, ui) { 
    var p = $(this).parent();
    $(".ui-selected").each(obj, function() {
      if(obj.parent() == p) {
        // get rad
      }
    });
  }
});
link|flag
is there any way to use the "ui" parameter to get the current selection? when using stop:funtion(event,ui){} in selectable the ui parameter always seems to be undefined... – Zeus Sep 4 at 14:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.