我正在使用Angular UI Bootstrap創建彈出窗口,但我無法找到在彈出窗口內添加關閉按鈕的選項。關閉按鈕的角度UI Bootstrap彈出窗口
我自定義了popover模板以包含關閉按鈕。但是我仍然無法找到關閉彈窗的功能/事件。設置是第一次打開虛假作品,因爲它只是覆蓋該功能 - 但此後變得無法使用。
<button popover-placement="bottom" popover="test">POPOVER WITH CLOSE<button>
這裏是模板腳本:
angular.module("template/popover/popover.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("template/popover/popover.html",
"<div class=\"popover {{placement}}\" ng-class=\"{ in: isOpen(), fade: animation() }\">\n" +
" <div class=\"arrow\"></div>\n" +
"\n" +
" <div class=\"popover-inner\">\n" +
" <button ng-click=\"isOpen = !isOpen()\" class=\"btn-popover-close btn btn-primary\">Close</button>\n" +
" <h3 class=\"popover-title\" ng-bind=\"title\" ng-show=\"title\"></h3>\n" +
" <div class=\"popover-content\" ng-bind=\"content\"></div>\n" +
" </div>\n" +
"</div>\n" +
"");
}]);
我還以爲寫了關閉按鈕的指令,觸發與關閉‘按鈕酥料餅的「點擊」的事件’,但我不知道這是遵循的方法。
什麼是遵循正確的方法呢?
我還是不敢相信他們還沒有實現關閉按鈕 – UltraSonja