web-dev-qa-db-ja.com

jQueryオートコンプリートクリックですべて表示しますか?

私はjQueryのオートコンプリートを比較的簡単な方法で使用しています。

$(document).ready(function() {
  var data = [ {text: "Choice 1"}, 
               {text: "Choice 2"}, 
               {text: "Choice 3"} ]

$("#example").autocomplete(data, {
  matchContains: true,
  minChars: 0,
  formatItem: function(item) 
    { return item.text; }
    }
  );
  });

オートコンプリートで利用可能なすべての選択肢を表示するonclickイベント(ボタンやリンクなど)を追加するにはどうすればよいですか?基本的に、オートコンプリート要素と選択/ドロップダウン要素のハイブリッドを作成しようとしています。

ありがとう!

59
Rio

ドキュメントでそれを行う明白な方法はわかりませんが、オートコンプリートが有効なテキストボックスでフォーカス(またはクリック)イベントをトリガーしようとしています:

$('#myButton').click(function() {
   $('#autocomplete').trigger("focus"); //or "click", at least one should work
});
18
karim79

このイベントをトリガーして、すべてのオプションを表示できます。

$("#example").autocomplete( "search", "" );

または、以下のリンクの例をご覧ください。まさにあなたがやりたいことのように見えます。

http://jqueryui.com/demos/autocomplete/#combobox

[〜#〜] edit [〜#〜](@cnanneyから)

注:空の検索文字列がすべての要素を返すようにするには、オートコンプリートでminLength:0を設定する必要があります。

99
Tom Pietrosanti

これが一番うまくいくことがわかった

var data = [
    { label: "Choice 1", value: "choice_1" },
    { label: "Choice 2", value: "choice_2" },
    { label: "Choice 3", value: "choice_3" }
];

$("#example")
.autocomplete({
    source: data,
    minLength: 0
})
.focus(function() {
    $(this).autocomplete('search', $(this).val())
});

ラベルを検索し、値を要素$(#example)に配置します

35
Craig

すべてのアイテムを表示する/コンボボックスの動作をシミュレートするには、最初にminLengthオプションを0(デフォルトは1)に設定したことを確認する必要があります。次に、クリックイベントをバインドして、空の文字列で検索を実行できます。

$('inputSelector').autocomplete({ minLength: 0 });
$('inputSelector').click(function() { $(this).autocomplete("search", ""); });
7
Nine Tails

解決策: フォーカスイベントでjquery uiオートコンプリートリストを表示

複数回動作させるためのソリューション

<script type="text/javascript">
$(function() {
    $('#id').autocomplete({
        source: ["ActionScript",
                    /* ... */
                ],
        minLength: 0
    }).focus(function(){     
        //Use the below line instead of triggering keydown
        $(this).data("autocomplete").search($(this).val());
    });
});
5
SUF

これを試して:

    $('#autocomplete').focus(function(){
        $(this).val('');
        $(this).keydown();
    }); 

minLengthに設定

毎回動作します:)

4
Cobaltus
 $j(".auto_complete").focus(function() { $j(this).keydown(); })
3
Tom

mustminLengthzeroに設定して、これを機能させます!これが実際の例です。

$( "#dropdownlist" ).autocomplete({
      source: availableTags,
      minLength: 0 
    }).focus(function() {
      $(this).autocomplete('search', $(this).val())
    });
});
3
Brane

すべてのオプションが表示されます:"%" (下記参照)

重要なことは、以下の例のように、前の#example宣言の下に配置する必要があることです。これを理解するのに時間がかかりました。

$( "#example" ).autocomplete({
            source: "countries.php",
            minLength: 1,
            selectFirst: true
});

$("#example").autocomplete( "search", "%" );
2
Sebastian

これは私のために働く唯一のものです。リストは毎回表示され、選択すると閉じます:

$("#example")
.autocomplete(...)
.focus(function()
{
  var self = this;

  window.setTimeout(function()
  {
    if (self.value.length == 0)
      $(self).autocomplete('search', '');
  });
})
2
Chris

これを使用できます:

$("#example").autocomplete( "search",  $("#input").val() );
2
Renato Chea
<input type="text" name="q" id="q" placeholder="Selecciona..."/>


<script type="text/javascript">
//Mostrar el autocompletado con el evento focus
//Duda o comentario: http://WilzonMB.com
$(function () {
    var availableTags = [
        "MongoDB",
        "ExpressJS",
        "Angular",
        "NodeJS",
        "JavaScript",                
        "jQuery",
        "jQuery UI",
        "PHP",
        "Zend Framework",
        "JSON",
        "MySQL",
        "PostgreSQL",
        "SQL Server",
        "Oracle",
        "Informix",
        "Java",
        "Visual basic",
        "Yii",
        "Technology",
        "WilzonMB.com"
    ];
    $("#q").autocomplete({
        source: availableTags,
        minLength: 0
    }).focus(function(){            
       $(this).autocomplete('search', $(this).val())
     });
});
</script>

http://jsfiddle.net/wimarbueno/6zz8euqe/

2
Wilzon

これが誰かを助けることを願っています:

$('#id')
        .autocomplete({
            source: hints_array,
            minLength: 0, //how many chars to start search for
            position: { my: "left bottom", at: "left top", collision: "flip" } // so that it automatically flips the autocomplete above the input if at the bottom
            })
        .focus(function() {
        $(this).autocomplete('search', $(this).val()) //auto trigger the search with whatever's in the box
        })
2
Tsonev

属性minChars:0を使用してこれを解決した後、2回のクリックをトリガーします。 (入力を1回クリックするとオートコンプリートが表示されます)コード

<input type='text' onfocus='setAutocomplete(this)'>

function setAutocomplete(el){
    $(el).unbind().autocomplete("./index.php", {autoFill:false, minChars:0, matchContains:true, max:20});
    $(el).trigger("click");$(el).trigger("click");
}
1
Mesrop
$("#searchPkgKeyWord").autocomplete("searchURL",
        {
            width: 298,
            max: 1000,
            selectFirst: false
        }).result(function (event, row, formatted) {
            callback(row[1]);
        }).focus(function(){
            $(this).click(); //once the input focus, all the research will show
        });
1
jackqqxu

完全なように見えるすべての答えを見てきました。

カーソルがテキストフィールドにあるときにリストを取得する場合は、OR一致するラベルをクリックしたときに、次のようにします。

//YourDataArray = ["foo","bar"];
$( "#YourID" ).autocomplete({
            source: YourDataArray 
        }).click(function() { $(this).autocomplete("search", " "); });

これは、Firefox、IEで正常に動作します。Chrome ...

1
josemaria

より良いオプションは$( "#idname")。autocomplete( "search"、 "");テキストボックスのonclickパラメータに。 selectではjqueryによってフォーカスが置かれるため、これは回避策になります。それが許容できる解決策であるかどうかわからない。

0
human.js

私はこの方法を使用しました:

$("#autocomplete").autocomplete({
                source: YourDataArray,
                minLength: 0,
                delay: 0
            });

それから

OnClientClick="Suggest(this); return false;"/>

 function Suggest(control) {
                var acControl = $("#" + control.id).siblings(".ui-autocomplete-input");
                var val = acControl.val();
                acControl.focus();
                acControl.autocomplete("search");
0
91m0n

$("#example").autocomplete( "search", "" );部分を機能させることができませんでした。機能するソースに存在する文字で検索を変更した場合に限ります。だから私はその後使用しました$("#example").autocomplete( "search", "a" );

0
Kosmosniks

パラメータなしで検索機能を使用することもできます。

jQuery("#id").autocomplete("search", "");
0
Jean-David

私は最近これを行う必要があり、いくつかの異なる順列(onfocus、textboxのonclickなどを使用)を試した後、最終的にこれに落ち着きました...

 <input id="autocomplete" name="autocomplete" type="text" 
 value="Choose Document">

 <p>
 <button type="submit" value="Submit" name="submit" id="submit" >
  Submit
 </button>
 </p>

<script type="text/javascript">

$("#autocomplete").autocomplete(
{
source: '@Url.Content("~/Document/DocumentTypeAutoComplete/")' //<--ddl source
, minLength: 0 // <-- This is necessary to get the search going on blank input
, delay: 0
, select: function (event, ui) 
  {
  if (ui.item) {
     $("#autocomplete").val(ui.item.value);//<-- Place selection in the textbox
          $("docForm").submit(); 
          loadDocTypeCreatePartial(ui.item);
          $("#submit").focus(); //This stops the drop down list from reopening 
                                // after an item in the select box is chosen
                                // You can place the focus anywhere you'd like,
                                // I just chose my *submit* button
                }
   }
  }).focus(function () {
    // following line will autoselect textbox text
    // making it easier for the user to overwrite whats in the 
    // textbox
    $(this).select();

    //The below line triggers the search function on an empty string
    $(this).data("autocomplete").search('');
   });
 </script>

これにより、フォーカスでオートコンプリートddlリストが開きます(上記のように入力ボックスにデフォルトのテキストがある場合でも)。

また、ユーザーがテキストを消去する必要がないように、テキストボックス内のテキストを自動選択します。

オートコンプリートリストからアイテムを選択すると、そのアイテムがオートコンプリート入力ボックスに配置され、フォーカスが別のコントロールに移動します(したがって、オートコンプリートが再び開くのを防ぎます)。

動的なAjax呼び出しを非常に素晴らしい Chosen融解氷 機会があればアップグレードしてください。

0