Hallo,
ich hab noch eine komische Anforderung in HTML. Ich möchte eine Table haben und wenn man eine Zeile anklickt, dann sollte sich die Zeile nach unten vergrößern und ein text angezeigt werden. Das hab ich mal gemacht, ich weiß aber nicht, wie ich den Text unter die jeweilige Zeile bekomm. Wär dankbar für jeden Hinweis! Danke! HAnnes
<tbody>
<tr ng-repeat="dashboardMessageUserConnection in vm.dashboardMessageUserConnections">
<th scope="row">{{$index + 1}}</th>
<td>{{dashboardMessageUserConnection.name}}</td>
<td>{{dashboardMessageUserConnection.title}}</td>
<td>{{dashboardMessageUserConnection.time}}</td>
<td><span class="glyphicon glyphicon-triangle-bottom"></span></td>
<td><input type="checkbox"></td>
</tr>
<td colspan="6">
<div id="collapseOne" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
text
</div>
</div>
</td>
</tbody>