0

ブートストラップ ポップオーバーで ui-autocomplete を使用したいのですが、ポップオーバー ダイアログでレンダリングされた html フォームがイベント (クリックやフォーカスなど) を検出できません。これの解決策は何ですか??

ポップオーバーの JS コード

this.postDialog.popover({
    placement: 'bottom',
    title: 'New Post',
    html: 'true',
    content: _template,
    container: 'body'
});

オートコンプリートの JS コード

 $(elementId).autocomplete({
        source: sourceDataFromArray,
        minLength: 0,
        select: function(event, ui) {
         //statements 
        }
});
4

0 に答える 0