TwitterBootstrapとBootstrap -datepicker拡張機能を使用します。ポップオーバー内に日付ピッカーを表示できません。
<a href="#" id="add-event-button" class="btn btn-small">Add an Event</a>
$(document).ready(function () {
$("#add-event-button").popover({
title: "Add an Event",
placement: 'bottom',
content: '<input class="datepicker" type="text" />',
html: true
}).click(function (e) {
e.preventDefault();
});
});
ポップオーバーは問題なく表示<input class="datepicker" type="text" />
され、ポップオーバーコンテキストの外側では日付ピッカーが問題なく表示されます。何か案は?