web-dev-qa-db-ja.com

JqueryUIで選択可能な要素を見つける方法

JQueryで選択可能なイベント「selecting」と「start」がパラメーターとして受け取るイベントとUIオブジェクトに関する情報を探しています。ドキュメントでこれを見つけることができず、プロパティをループすることは役に立ちません。

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

具体的には、選択されている要素を見つけて、それらの親要素が同じであるかどうかを確認したいと思います。私はこれがどこかのUIオブジェクトにあると思いました。

15
kevzettler

要素を選択すると、_ui-selected_クラスが追加されます。

したがって、選択したすべての要素を$(".ui-selected")で取得できます。

これは正確には機能しないかもしれませんが、アイデアは次のようになると思います。

_$('#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
      }
    });
  }
});
_
12
Andy Gaskell

グループ選択で選択されたすべてのアイテムに対して発生する、選択されたイベントと選択されていないイベントを使用する必要があります。

var selected = new Array();
$("#selectable").selectable({
    selected: function(event, ui){            
        selected.Push(ui.selected.id);
    },
    unselected: function(event, ui){
        //ui.unselected.id
    }
});
11
Lukspa

:lastまたは:firstを使用すると、選択は最初に選択されるのではなく、liの順序で最初に選択されます。

これは私が管理したソリューションです:

HTML

<ol class="selectable">                            
     <li class="ui-widget-content" 
        id="selectable_1"
        value="1"
     > First Selectable </li>
     <li class="ui-widget-content" 
        id="selectable_2"
        value="2"
     > Second Selectable </li>
</ol>  

このコードでは、liにIDと値を指定して、選択イベントのuiプロパティで使用できるようにしました。

JAVASCRIPT

//A place to put the last one
var last_selected_value;
var last_selected_id;


$( ".selectable" ).selectable({
    selecting: function(event, ui) {

        //In the selection event we can know wich is the last one, by getting the id on
        //the ui.selecting.property

        last_selected_value = ui.selecting.value;
        last_selected_id = ui.selecting.id;
    },
    stop: function(event, ui) {

        //Here the event ends, so that we can remove the selected
        // class to all but the one we want

        $(event.target).children('.ui-selected').not("#" + last_selected_id)
            .removeClass('ui-selected');

        //We can also put it on a input hidden
        $( "#roles_hidden" ).val(last_selected_value);
    }
});
1
Javier Pino

これはあなたの問題を解決します:

    <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>

詳細については、 http://jqueryui.com/demos/selectable/#serialize を確認してください。

0
dez