<table class="table table-bordered table-condensed table-striped">
<thead >
<tr>
<td>Col1</td>
<td>Col2</td>
<td>Col3</td>
</tr>
</thead>
<tbody>
<!--<div *ngIf="tours.tsdpt"></div>-->
<tr *ngFor="let tsdg of tours.tsdpt">
<td> {{tsdg.dgn}}</td>
<td>
<table>
<tbody *ngIf="tsdg.dep; else elseBlock">
<tr *ngFor="let tsd of tsdg.dep"
style="border:none">
<td> <span>{{tsd.name}}</span>
<span>{{tsd.code}}</span></td>
<td > <input type="number"
[(ngModel)]="tsd.ac[0].seats" placeholder="Seats"></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
I would like it to display as
Col1 | Col2 | Col3
| 1 |
8 | 2 | 11
| 3 |
--
You received this message because you are subscribed to the Google Groups
"Angular and AngularJS discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.