SHARE
TWEET
Untitled
a guest
Jan 22nd, 2016
52
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- <!-- my angular page difinition -->
- <p ng-repeat="mow in check.BankDataParent.mows">
- <div class="checkbox">
- <input type="checkbox" ng-model="mow.selected" />
- <label for="checkbox"></label>
- </div>
- <i class="fa fa-exclamation-triangle" style="color:red;"
- title="{{mow.errorInputAmountTitle}}"
- ng-show="mow.selected && mow.errorInputAmountTitle"></i>
- <input type="text" ng-model="mow.inputAmount" size="8" ng-show="mow.selected" />
- {{mow.displayField}}
- <a href="/{{mow.id}}" target="_blank"><i class="fa fa-external-link"></i></a>
- </p>
- <!-- but this is how is being parsed when it has 4 elements in check.BankDataParent.mows -->
- <!-- all of the <p> are blanks and only one content at te end, but its empty too (no data)... why?? -->
- <!-- ngRepeat: mow in check.BankDataParent.mows -->
- <p ng-repeat="mow in check.BankDataParent.mows" class="ng-scope">
- </p>
- <!-- end ngRepeat: mow in check.BankDataParent.mows -->
- <p ng-repeat="mow in check.BankDataParent.mows" class="ng-scope">
- </p>
- <!-- end ngRepeat: mow in check.BankDataParent.mows -->
- <p ng-repeat="mow in check.BankDataParent.mows" class="ng-scope">
- </p><!-- end ngRepeat: mow in check.BankDataParent.mows -->
- <div class="checkbox">
- <input type="checkbox" ng-model="mow.selected" class="ng-pristine ng-untouched ng-valid">
- <label for="checkbox"></label>
- </div>
- <i class="fa fa-exclamation-triangle ng-hide" style="color:red;" title="" ng-show="mow.selected && mow.errorInputAmountTitle"></i>
- <input type="text" ng-model="mow.inputAmount" size="8" ng-show="mow.selected" class="ng-pristine ng-untouched ng-valid ng-hide">
- <a href="/" target="_blank"><i class="fa fa-external-link"></i></a>
- <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.
