web-dev-qa-db-ja.com

jQuery UIで選択可能なものをプログラムで選択するにはどうすればよいですか?

選択可能なアイテムの範囲があります。それらの中からプリセット選択をアクティブにするボタンをどこかに追加したいと思います。それを行う方法はありますか?

「これらの人を選択してください」と言ってから、すべてのイベントを通常どおりに発生させるので、これらの選択イベントをすべて手動で呼び出す必要はありません。

詳細:私が話しているイベントは、 彼らのAPI および 彼らのデモページ)にリストされているイベントです。

  • 選択済み
  • 選択
  • 開始
  • やめる
  • 未選択
  • 選択解除

また、物を選ぶときにも設定・クリアされるデータがあるのではないかと思います。したがって、これらのcssクラスを追加するだけではありません。

25
Svish

これは、複数の要素を処理するAlexRのコードのバリエーションです。

http://jsfiddle.net/XYJEN/1/

function SelectSelectableElements (selectableContainer, elementsToSelect)
{
    // add unselecting class to all elements in the styleboard canvas except the ones to select
    $(".ui-selected", selectableContainer).not(elementsToSelect).removeClass("ui-selected").addClass("ui-unselecting");

    // add ui-selecting class to the elements to select
    $(elementsToSelect).not(".ui-selected").addClass("ui-selecting");

    // trigger the mouse stop event (this will select all .ui-selecting elements, and deselect all .ui-unselecting elements)
    selectableContainer.data("selectable")._mouseStop(null);
}

更新:

jQueryUI 1.10、kmkからのコメントごと: http://jsfiddle.net/XYJEN/163/

26
Homer

JQuery UI Webサイトで選択可能なサンプルを想定( http://jqueryui.com/demos/selectable/ ):

<style>
    #feedback { font-size: 1.4em; }
    #selectable .ui-selecting { background: #FECA40; }
    #selectable .ui-selected { background: #F39814; color: white; }
    #selectable { list-style-type: none; margin: 0; padding: 0; width: 60%; }
    #selectable li { margin: 3px; padding: 0.4em; font-size: 1.4em; height: 18px; }
    </style>
    <script>
    $(function() {
        $( "#selectable" ).selectable();
    });
    </script>



<div class="demo">

<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>
    <li class="ui-widget-content">Item 7</li>
</ol>

</div><!-- End demo -->

あなたは次のような機能を持つことができます:

    function selectSelectableElement (selectableContainer, elementToSelect)
    {
        // add unselecting class to all elements in the styleboard canvas except current one
        jQuery("li", selectableContainer).each(function() {
        if (this != elementToSelect[0])
            jQuery(this).removeClass("ui-selected").addClass("ui-unselecting");
        });

        // add ui-selecting class to the element to select
        elementToSelect.addClass("ui-selecting");

        selectableContainer.selectable('refresh');
        // trigger the mouse stop event (this will select all .ui-selecting elements, and deselect all .ui-unselecting elements)
        selectableContainer.data("selectable")._mouseStop(null);
    }

そしてそれを次のように使用します:

// select the fourth item
selectSelectableElement (jQuery("#selectable"), jQuery("#selectable").children(":eq(3)"));

これは、要素のコレクションを選択できるように改善できますが、それはあなたが始めるための出発点です。

14
Alex R

そこにあなたgo

,calc: function() { this._mouseStop(); },
custom: function(guys) {
  var self = this;
  self.selectees.removeClass("ui-selected");
  guys.each(function(){
    $(this).addClass("ui-selecting");
    self._trigger("selecting", {}, {
       selecting: this
    });
  });
  this.calc(); // do the selection + trigger selected
} 

_mouseStopselectable.jsの後にこれを追加すると、次のことができますsay

$("#selectable").selectable("custom", $("#selectable :first-child"));

...またはあなたが好きなものは何でも。

持っている楽しい! :)

4
gblazex

編集:誤解してすみません、私は私の答えを編集しています。

したがって、はい、オブジェクトの選択がui-selectedクラスに対応している可能性があるため、実行できることは次のとおりです。

$(#button).click(function(){
  $("#element1").addClass("ui-selected");

  .......

});
2

。trigger( 'selected') を使用してselectedイベントを手動でトリガーすることはできませんか?

0
Bruno

Ionutコードを使用して、どうですか?

 $("#selectable li:first").trigger('start').trigger('selecting').trigger('selected'); 

0
Antonio Louro