SHARE
TWEET

Untitled

a guest Jan 22nd, 2016 52 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!-- my angular page difinition -->
  2. <p ng-repeat="mow in check.BankDataParent.mows">
  3.     <div class="checkbox">
  4.         <input type="checkbox" ng-model="mow.selected" />
  5.         <label for="checkbox"></label>
  6.     </div>
  7.     <i class="fa fa-exclamation-triangle" style="color:red;"
  8.    title="{{mow.errorInputAmountTitle}}"
  9.    ng-show="mow.selected && mow.errorInputAmountTitle"></i>
  10.     <input type="text" ng-model="mow.inputAmount" size="8" ng-show="mow.selected" />
  11.     {{mow.displayField}}
  12.     <a href="/{{mow.id}}" target="_blank"><i class="fa fa-external-link"></i></a>
  13. </p>
  14.  
  15. <!-- but this is how is being parsed when it has 4 elements in check.BankDataParent.mows -->
  16. <!-- all of the <p> are blanks and only one content at te end, but its empty too (no data)... why?? -->
  17. <!-- ngRepeat: mow in check.BankDataParent.mows -->
  18. <p ng-repeat="mow in check.BankDataParent.mows" class="ng-scope">
  19.                             </p>
  20. <!-- end ngRepeat: mow in check.BankDataParent.mows -->
  21. <p ng-repeat="mow in check.BankDataParent.mows" class="ng-scope">
  22.                             </p>
  23. <!-- end ngRepeat: mow in check.BankDataParent.mows -->
  24. <p ng-repeat="mow in check.BankDataParent.mows" class="ng-scope">
  25.                             </p><!-- end ngRepeat: mow in check.BankDataParent.mows -->
  26.     <div class="checkbox">
  27.         <input type="checkbox" ng-model="mow.selected" class="ng-pristine ng-untouched ng-valid">
  28.         <label for="checkbox"></label>
  29.     </div>
  30.     <i class="fa fa-exclamation-triangle ng-hide" style="color:red;" title="" ng-show="mow.selected &amp;&amp; mow.errorInputAmountTitle"></i>
  31.     <input type="text" ng-model="mow.inputAmount" size="8" ng-show="mow.selected" class="ng-pristine ng-untouched ng-valid ng-hide">
  32.    
  33.     <a href="/" target="_blank"><i class="fa fa-external-link"></i></a>
  34. <p></p>
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top