2013-07-08 76 views
-1

試圖使用angular-ui中的選項卡。Angular ui-bootsrap選項卡無內容

我的模板:

<div id="footer" ng-controller="LoggerController"> 

     <button id="logger_button" ng-click="isCollapsed = !isCollapsed" class="btn"> 
     </button> 

     <div id="log_div" collapse="isCollapsed"> 
      <div class="log_tab_div" style="height: 240px; width: 100%;"> 
       <tabset> 
        <tab heading="Static title">Some sontent</tab> 
        <tab heading="Static title">Static content</tab> 
       </tabset> 
      </div> 
     </div>   

我看到的標籤,但在這個標籤沒有任何內容。

謝謝。

回答

1

請問您可以發佈LoggerController的代碼嗎?

您的頁腳div未關閉。

您是否已經將angular-ui引導腳本http://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.4.0.js添加到您的頁面並將ui.bootstrap注入您的角度應用程序模塊中,如下所示angular.module('aModule', ['ui.bootstrap']);

如果滿足所有這些條件,那麼我認爲你應該沒問題。 :)

相關問題