2015-09-29 83 views
3

我有一個問題,試圖獲得兩個並排高度相同的高度,當每個div的內容使用ng-repeat生成時。 Flex框停止站點響應,我不能解決什麼時候適當的時候調用Jquery函數,因爲視圖是嵌套的,並且頁面在顯示新的html時沒有實際加載。我試過重複開始並且無濟於事。相同高度DIV使用NG-Repeat

理想情況下,一旦內容已經加載,我會在右邊的div是與左邊的div相同的高度。 真的很感謝這個問題的任何幫助。

乾杯

編輯 - 代碼中包含了

<div class="row"> 
     <div class="noSpacing col-xs-6"> 
      <div class="col-xs-12 noSpacing rottnestGreen"> 
       <div ng-repeat="bh in bikeHire" class="row"> 
        <p class="col-xs-6">{{bh.type}}</p> 
        <select class="inline col-xs-3 noSpacing np" ng-model="bikeHire[$index].quantity" ng-options="ddl for ddl in ddlNumbers" ng-change="addOps(bh.type, bikeHire[$index].quantity, bh.price)"></select> 
        <p class="col-xs-3 blueText">{{bh.price | currency}}</p> 
       </div> 
      </div> 
     </div> 
     <div class="noSpacing col-xs-6"> 
      <div class="col-xs-12 noSpacing np rottnestGreen"> 
       <div ng-repeat="sf in sAndF" class="row"> 
        <p class="col-xs-6">{{sf.type}}</p> 
        <select class="inline col-xs-3 noSpacing np" ng-model="sf.quantity" ng-options="ddl for ddl in ddlNumbers" ng-change="addOps(sf.type, sf.quantity, sf.price)"></select> 
        <p class="blueText col-xs-3">{{sf.price | currency}}</p> 
       </div> 
      </div> 
     </div> 
     <div class="clearfix"></div> 
    </div> 
+1

請發佈您的代碼。歡呼 – Chris

+0

這隻能通過使用固定高度或彈性框來解決,或者在重複運行後運行javascript來調整高度。 $'('$ viewContentLoaded''和'$ window.on('resize'' events – YOU

+0

)感謝您的回覆,我已經實現了$ scope。$ on('$ viewContentLoaded'特性但是,當父頁面加載完成時觸發,而不是按照需要的子頁面觸發。函數$ scope。$ on('$ viewContentLoaded')包含在子控制器中。 –

回答