2016-08-12 11 views
1
<uib-alert ng-repeat= "alert in ConfigurationAlerts" close="closeAlert($index)"> {{alert.msg}} </uib-alert> 

var eWiggle = angular.module('eWiggleApp',['ui.router', 'ngAnimate', 'ui.bootstrap','blockUI','ngCookies']); 
+2

は、あなたの質問に詳しく説明してください。 – suneetha

+0

私はui-bootstrap-tpls-2.0.jsを使用しています.Uib-alertポップアップをやろうとしています。メッセージだけを見ることができます。sylingは適用されません。私は、以前のバージョンに戻す場合は、 古いバージョンを働いている /* *角度-UI-ブートストラップ * http://angular-ui.github.io/bootstrap/ *バージョン:0.13.4 - 2015から09 -03 *ライセンス:MIT * / – Sudha

答えて

2

を適用されていません。クラスを指定していないため、アラートの配色が決まります。あなたの例では、次のようになります。視聴者は、角ブートストラップの警告を使用しているときに問題あなたが直面していることを知っているように、

<div uib-alert ng-class="'alert-success'" ng-repeat="alert in ConfigurationAlerts" close="closeAlert($index)"> {{alert.msg}} </div> 

The documentation has an example which is worth looking at.