0

ブートストラップ モーダル ウィンドウ (AJAX 経由で読み込まれる) で複数の入力を使用しています。これらの入力には、Bloodhound と統合された typehead.js が必要です。データセットは (JSON として) 正しく読み込まれますが、何らかの理由で入力が自動的に無効になることがわかりません。私はすべての最新バージョンを使用しています。

ここでは、inputs タグ (関連する非表示の入力を含む) を示します。エンジンは data-autocomplete を使用して、リモート URL の構築を完了します。

<input type="text" class="typeahead form-control" data-provide="typeahead" id="my_input" data-autocomplete='users'>
          <input type="hidden" name="my_input" />

ここに私のJavaScriptコード:

$.get(window.BASE_URL+'/form',function(data){
        /*SUGGESTIONS ENGINE*/
        var autocomplete;
        var autocomplete = new Bloodhound({
          datumTokenizer: function(d) { return Bloodhound.tokenizers.whitespace(d.id); },
          queryTokenizer: Bloodhound.tokenizers.whitespace,
          limit: 20,
          remote: {
            url: window.BASE_URL+'the-url/',
            replace: function(url,uriEncodedQuery) {
                    if(typeof $('input:focus').attr('data-autocomplete')!='undefined')
                    {
                        var new_url=url+$('input:focus').attr('data-autocomplete')+'?texto='+$('input:focus').val()+'&tipo='+$('input:focus').attr('id');
                        return new_url;
                    }
            }
          }
        });

        autocomplete.initialize();

       //LOAD TYPEAHEADS
        $('.modal-body').find('input.typeahead').typeahead({
            minLength: 2,
            highlight:true
        },{
            name: 'autocomplete',       
            displayKey:'label',
            source: autocomplete.ttAdapter(),               
        }).on('typeahead:selected', function(obj, datum) {        
            //console.log(JSON.stringify(this));
            //If the text has an id seeks its hidden twin
            if(typeof $(this).attr('id')!='undefined')
                $('input[name="'+$(this).attr('id')+'"]').val(datum.id);
        });
    });

json 応答からのアイテムの形式は次のとおりです。

{"id":"1","label":"McDonald, Richard"}
4

1 に答える 1