<div class="row">
    <div class="col-md-12">
   Â
    <div class="table-responsive" *ngIf="line==0">
     <h4>Liste</h4>
    <table id="mytable" class="table table-bordred table-striped">
          <thead>        Â
          <th>Mouvement {{listId}} {{editId}}</th>
          <th>course</th>
          <th>Accel</th>
          <th>Vitesse</th>
          <th>Decel</th>
          <th>temps</th>
          <th>Edit</th>
          <th>Delete</th>
          </thead>
    </table>  Â
    </div>
<div class="table-responsive" >
    <table id="mytable" class="table table-bordred table-striped">
  <tbody>
  Â
<MYCOMPONENT></MYCOMPONENT>
  </tbody>
  </table>
 </div>
 </div>
 </div>Hi,ÂIs there a way to use a component as row i n a table ?? the next code does not work
<div class="row">
    <div class="col-md-12">
   Â
    <div class="table-responsive">
     <h4>Liste</h4>
    <table id="mytable" class="table table-bordred table-striped">
          <thead>        Â
          <th>Mouvement {{listId}} {{editId}}</th>
          <th>course</th>
          <th>Accel</th>
          <th>Vitesse</th>
          <th>Decel</th>
          <th>temps</th>
          <th>Edit</th>
          <th>Delete</th>
          </thead>
   <tbody>
<MYCOMPONENT></MYCOMPONENT>
  </tbody>
  </table>
 </div>
 </div>
 </div>
Regards,Steph