Advertisement
Guest User

Stackoverflow problem. TD to input

a guest
Aug 19th, 2016
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.71 KB | None | 0 0
  1. <table class="besttable" border="1">
  2.        <tr><th class="sdel"></th><th class="skunde">Kunde</th><th class="scontact">Telefon / Email</th><th class="sbestellung">Bestellung</th><th class="sbestdatum">Bestellt am...</th><th class="slieferant">Lieferant</th><th class="sart">Bestellart</th><th class="slieferdatum">Lieferdatum</th></tr>
  3.        <tr ng-repeat="order in orders | filter:$ctrl.query | orderBy:$ctrl.orderProp" bgcolor="{{order.Status}}"><td><button ng-click="orders.$remove(order)">X</button></td><td>{{order.Kunde}}</td><td>{{order.Contact}}</td><td>{{order.Text}}</td><td>{{order.Bestelldatum}}</td><td>{{order.Lieferant}}</td><td>{{order.Bestellart}}</td><td>{{order.Lieferdatum}}</td></tr>
  4.       </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement