up vote 3 down vote favorite
share [g+] share [fb]

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.

link|improve this question

feedback

5 Answers

up vote 3 down vote accepted

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|improve this answer
3  
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 '09 at 14:02
-1 this is not a good way. you should use $(ui.selected) – nima Jan 24 at 10:25
@nima I'm thinking that nearly 2.5 years ago that was not the case. Post an answer. – Andy Gaskell Jan 24 at 14:41
@Andy Gaskell sorry I didn't notice the date. – nima yesterday
feedback

I have the same trouble, I hope this helps: I managed to get the content for "ui" object debugging in firebug. ui.selected.id gives the id of the selected element in last selection. It shows the last selected element even when you have multiple selections. I tried this with the 1.8rc3.

link|improve this answer
feedback

this will solve your problem:

    <script type="text/javascript">
    $(function() {
        $("#selectable").selectable({
            stop: function(){
                var result = $("#select-result").empty();
                $(".ui-selected", this).each(function(){
                    var index = $("#selectable li").index(this);
                    result.append(" #" + (index + 1));
                });
            }
        });
    });
    </script>


<div class="demo">

<p id="feedback">
You've selected: <span id="select-result">none</span>.
</p>

<ol id="selectable">
    <li class="ui-widget-content">Item 1</li>
    <li class="ui-widget-content">Item 2</li>
    <li class="ui-widget-content">Item 3</li>
    <li class="ui-widget-content">Item 4</li>
    <li class="ui-widget-content">Item 5</li>
    <li class="ui-widget-content">Item 6</li>
</ol>

check out http://jqueryui.com/demos/selectable/#serialize for more info

link|improve this answer
feedback

You have to use selected and unselected event which are fired for every selected item in group selection.

var selected = new Array();
$("#selectable").selectable({
    selected: function(event, ui){            
        selected.push(ui.selected.id);
    },
    unselected: function(event, ui){
        //ui.unselected.id
    }
});
link|improve this answer
feedback

the ui argument in that event is the reference to the elemenent, if it was the selected event ui.selected event will be the elemennt, if it was unselect unselected.ui.....etc

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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