ブートストラップ ポップオーバーで 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
}
});